diff options
-rw-r--r-- | source/mod_student/lexer.mll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/mod_student/lexer.mll b/source/mod_student/lexer.mll index bfc279a..1d5f9f2 100644 --- a/source/mod_student/lexer.mll +++ b/source/mod_student/lexer.mll @@ -86,7 +86,7 @@ let implode l = (* vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv * Miejsce na twoje reguĊy *) - | '"' str as e '"' { STRING (unescape e) } + | '"' (str as e) '"' { STRING (unescape e) } | "'" (chr as e) "'" { CHAR (unescape_chr e) } | "," { COMMA } | ";" { SEMICOLON } |