diff options
author | pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2012-06-15 17:52:03 +0000 |
---|---|---|
committer | pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2012-06-15 17:52:03 +0000 |
commit | b7f40eefbd2310f07553709245af13b6929b34e3 (patch) | |
tree | 42f2929c7e6a00589047c43685d2845999909a67 /ide | |
parent | 55e6ed2761dbbb3e2e550ed6fb728193f39e836a (diff) |
Fix coqide vernac lexer
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15442 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide')
-rw-r--r-- | ide/coq_lex.mll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ide/coq_lex.mll b/ide/coq_lex.mll index fbcbbd788..f7a966609 100644 --- a/ide/coq_lex.mll +++ b/ide/coq_lex.mll @@ -19,6 +19,7 @@ let dot_sep = '.' (space | eof) rule coq_string = parse | "\\\"" { coq_string lexbuf } + | "\\\\" { coq_string lexbuf } | "\"" { () } | eof { () } | _ { coq_string lexbuf } |