From b7f40eefbd2310f07553709245af13b6929b34e3 Mon Sep 17 00:00:00 2001 From: pboutill Date: Fri, 15 Jun 2012 17:52:03 +0000 Subject: Fix coqide vernac lexer git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15442 85f007b7-540e-0410-9357-904b9bb8a0f7 --- ide/coq_lex.mll | 1 + 1 file changed, 1 insertion(+) (limited to 'ide/coq_lex.mll') 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 } -- cgit v1.2.3