diff options
Diffstat (limited to 'liblali.c')
| -rw-r--r-- | liblali.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -493,7 +493,7 @@ int readNext(Stream *stream) { } } -int initialReadNext(Stream *stream) { +int shebangFileReadNext(Stream *stream) { for (;;) { int ch = streamGetc(stream); if (ch == ';' || ch == '#') @@ -505,7 +505,7 @@ int initialReadNext(Stream *stream) { } int peekForward(Stream *stream, bool shebang) { - int ch = (shebang) ? initialReadNext(stream) : readNext(stream); + int ch = (shebang) ? shebangFileReadNext(stream) : readNext(stream); if (ch != EOF) streamSeek(stream, -1); return ch; |
