summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/lexer.mll
diff options
context:
space:
mode:
Diffstat (limited to 'perl_checker.src/lexer.mll')
-rw-r--r--perl_checker.src/lexer.mll2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl_checker.src/lexer.mll b/perl_checker.src/lexer.mll
index 83edc4d..6b73073 100644
--- a/perl_checker.src/lexer.mll
+++ b/perl_checker.src/lexer.mll
@@ -842,7 +842,7 @@ and string_escape = parse
| ['b' 'f' 'a' 'r'] { string_escape_useful := Left true; next_s ("\\" ^ lexeme lexbuf) (Stack.pop next_rule) lexbuf }
| ['$' '@' '%' '{' '['] {
if !string_escape_useful = Left false then string_escape_useful := Right (lexeme lexbuf) ;
- next_s ("\\" ^ lexeme lexbuf) (Stack.pop next_rule) lexbuf
+ next_s (lexeme lexbuf) (Stack.pop next_rule) lexbuf
}
| _ {
let c = lexeme lexbuf in