Only echo the newlines in comments, no formfeeds, etc, because
you don't know what you are preprocessing.
This commit is contained in:
parent
3e68ea031b
commit
66c5ebf42f
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ preprocess(fn)
|
|||
}
|
||||
for (;;) {
|
||||
LoadChar(c);
|
||||
if (class(c) == STNL) {
|
||||
if (c == '\n') {
|
||||
++LineNumber;
|
||||
++lineno;
|
||||
echo(c);
|
||||
|
|
Loading…
Reference in a new issue