commit | 10b62f3a279e8e928b471964c5dda572b78dc344 | [log] [tgz] |
---|---|---|
author | Gavin Howard <yzena.tech@gmail.com> | Tue Jan 08 15:39:00 2019 -0700 |
committer | Gavin Howard <yzena.tech@gmail.com> | Tue Jan 08 15:39:00 2019 -0700 |
tree | ecaf883f7cd9bddff60cf7e33be38672123385b7 | |
parent | 9c109f8cfdb503c1a6fa635742473a9cd7f61339 [diff] |
Make sure to eat whitespace after \ newline combo
diff --git a/src/lex.c b/src/lex.c index 5b0e656..73a6648 100644 --- a/src/lex.c +++ b/src/lex.c
@@ -93,6 +93,8 @@ else { ++i; bslashes += 1; + // Make sure to eat whitespace at the beginning of the line. + while(isspace(buf[i]) && buf[i] != '\n') ++i; } }