print "#bla..." comments
This commit is contained in:
parent
02bbdc7249
commit
2a02aab5a9
@ -224,6 +224,10 @@ while(NULL!=(cptr=fgets(line, LINE_SZ, fpin))) {
|
|||||||
// fprintf(stderr, "no token ?\n");
|
// fprintf(stderr, "no token ?\n");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if ('#' == cptr[0]) { // found a comment
|
||||||
|
fprintf(stderr, " %s\n", cptr);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
token = cptr;
|
token = cptr;
|
||||||
tokenid = type_of_the_line(cptr);
|
tokenid = type_of_the_line(cptr);
|
||||||
if (verbosity > 1)
|
if (verbosity > 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user