From a6f8778bfa707cab5fe25466de11018683c2a9d3 Mon Sep 17 00:00:00 2001 From: aspiwack Date: Fri, 10 Aug 2012 09:53:26 +0000 Subject: Fixes bug #2857. Coqide used the wrong escape sequence to delimit coq phrases. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15720 85f007b7-540e-0410-9357-904b9bb8a0f7 --- ide/coq_lex.mll | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ide/coq_lex.mll') diff --git a/ide/coq_lex.mll b/ide/coq_lex.mll index e20e44e22..2f3763880 100644 --- a/ide/coq_lex.mll +++ b/ide/coq_lex.mll @@ -18,8 +18,7 @@ let undotted_sep = [ '{' '}' '-' '+' '*' ] let dot_sep = '.' (space | eof) rule coq_string = parse - | "\\\"" { coq_string lexbuf } - | "\\\\" { coq_string lexbuf } + | "\"\"" { coq_string lexbuf } | "\"" { () } | eof { () } | _ { coq_string lexbuf } -- cgit v1.2.3