diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-06-01 10:30:00 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-06-01 10:30:00 +0200 |
commit | 863ea189ebaa9e7bd5226a71c443c14c98406b52 (patch) | |
tree | 847808595ea0870a219e3d988e291c9224a6360c /ell.c | |
parent | 8518c1a58f63d8a1fc992616480c6202335815e8 (diff) | |
download | ell-863ea189ebaa9e7bd5226a71c443c14c98406b52.tar.gz ell-863ea189ebaa9e7bd5226a71c443c14c98406b52.tar.xz ell-863ea189ebaa9e7bd5226a71c443c14c98406b52.zip |
Skip \r as whitespace
Diffstat (limited to 'ell.c')
-rw-r--r-- | ell.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -253,7 +253,7 @@ enum { }; static bool ell_lexer_is_whitespace (int c) { - return !c || c == ' ' || c == '\t'; + return !c || c == ' ' || c == '\t' || c == '\r'; } static unsigned char ell_lexer_escapes[256] = { |