summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2006-05-15 12:50:19 +0000
committerPascal Rigaux <pixel@mandriva.com>2006-05-15 12:50:19 +0000
commit681c1081c003275cb6e2a9898ea37d2bc4152748 (patch)
treeecd408ad19a3d60053ca1b908e5d766d71f662ee
parent91b031a8a34a64bbc9f89f543251ea8c1779917d (diff)
downloadperl_checker-681c1081c003275cb6e2a9898ea37d2bc4152748.tar
perl_checker-681c1081c003275cb6e2a9898ea37d2bc4152748.tar.gz
perl_checker-681c1081c003275cb6e2a9898ea37d2bc4152748.tar.bz2
perl_checker-681c1081c003275cb6e2a9898ea37d2bc4152748.tar.xz
perl_checker-681c1081c003275cb6e2a9898ea37d2bc4152748.zip
fix typo (detected by ocaml 3.09)
-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 f90ed25..b8f7969 100644
--- a/perl_checker.src/lexer.mll
+++ b/perl_checker.src/lexer.mll
@@ -657,7 +657,7 @@ rule token = parse
let pos = start, end_ in
if String.contains opts 'e' && sum (List.map (fun (s, _) -> count_chars_in_string s '"') s2) > 2 then
die lexbuf ("do not write so complicated things in the eval part of s///,\n" ^
- "i generate wrong warnings for things like s/xxx/die \"yyy \\\"zzz\\\" \"/")
+ "i generate wrong warnings for things like s/xxx/die \"yyy \\\"zzz\\\" \"/") ;
check_multi_line_delimited_string (Some opts) pos ;
PATTERN_SUBST(s1, s2, opts, pos)
}