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;
 		}
 	}