diff options
author | Nick White <arch@njw.me.uk> | 2008-04-03 01:37:43 +0000 |
---|---|---|
committer | Nick White <arch@njw.me.uk> | 2008-04-03 01:37:43 +0000 |
commit | 826bbe3e256a9008c6d4397de418429c79b7d8b8 (patch) | |
tree | f0c29adceb054c172c595422119f9d848e65230e /src | |
parent | 2c11ade646188ce8ba8e3d8abbf0463aa8876826 (diff) |
Removed extraneous comments
Removed obselete comments
git-archimport-id: getht@sv.gnu.org/getht--mainline--0.1--patch-36
Diffstat (limited to 'src')
-rw-r--r-- | src/issue.h | 2 | ||||
-rw-r--r-- | src/tocxml.c | 1 | ||||
-rw-r--r-- | src/xml.c | 1 |
3 files changed, 0 insertions, 4 deletions
diff --git a/src/issue.h b/src/issue.h index abde6b1..44f2601 100644 --- a/src/issue.h +++ b/src/issue.h @@ -18,8 +18,6 @@ * */ -/* all sizes are in bytes and are child-inclusive */ - typedef struct { int year; diff --git a/src/tocxml.c b/src/tocxml.c index d8f20db..60ef31b 100644 --- a/src/tocxml.c +++ b/src/tocxml.c @@ -204,7 +204,6 @@ int cur_identifiers(char * filepath, char * title, issdates * date) { xmlDocPtr file; -// if((file = xmlParseFile(filepath)) == NULL) if((file = xmlReadFile(filepath, "ISO-8859-1", 0)) == NULL) { return 1; @@ -33,7 +33,6 @@ int ready_xml(char * filepath, char * rootnode, xmlDocPtr * file, xmlNodePtr * n if(access(filepath, R_OK) != 0) return 1; -// if((*file = xmlParseFile(filepath)) == NULL) if((*file = xmlReadFile(filepath, "ISO-8859-1", 0)) == NULL) { fprintf(stderr, "Error: cannot open xml file %s\n", filepath); |