aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/coq_lex.mll
diff options
context:
space:
mode:
authorGravatar aspiwack <aspiwack@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-08-10 09:53:26 +0000
committerGravatar aspiwack <aspiwack@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-08-10 09:53:26 +0000
commita6f8778bfa707cab5fe25466de11018683c2a9d3 (patch)
tree0c3cd1bb0ffe27742ded39abbfb3bdf9ec72d9e9 /ide/coq_lex.mll
parentec3bff58d151ff804866175e907664d1fba3c600 (diff)
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
Diffstat (limited to 'ide/coq_lex.mll')
-rw-r--r--ide/coq_lex.mll3
1 files changed, 1 insertions, 2 deletions
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 }