diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2006-05-15 12:50:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2006-05-15 12:50:19 +0000 |
commit | d191c10ff2dd9252e8b4936b887fea5ed25ff3e1 (patch) | |
tree | 79f08547a67be0f27d1cdeeb95da97107d34ea54 | |
parent | 673aa915376fa67ea62bb06e391680e94346f555 (diff) | |
download | perl-MDK-Common-d191c10ff2dd9252e8b4936b887fea5ed25ff3e1.tar perl-MDK-Common-d191c10ff2dd9252e8b4936b887fea5ed25ff3e1.tar.gz perl-MDK-Common-d191c10ff2dd9252e8b4936b887fea5ed25ff3e1.tar.bz2 perl-MDK-Common-d191c10ff2dd9252e8b4936b887fea5ed25ff3e1.tar.xz perl-MDK-Common-d191c10ff2dd9252e8b4936b887fea5ed25ff3e1.zip |
fix typo (detected by ocaml 3.09)
-rw-r--r-- | perl_checker.src/lexer.mll | 2 |
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) } |