aboutsummaryrefslogtreecommitdiff
path: root/ell.c
diff options
context:
space:
mode:
Diffstat (limited to 'ell.c')
-rw-r--r--ell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ell.c b/ell.c
index 52d902e..e5f7c57 100644
--- a/ell.c
+++ b/ell.c
@@ -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] = {