summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--source/mod_student/lexer.mll2
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 }