aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/coq_lex.mll
diff options
context:
space:
mode:
authorGravatar courtieu <courtieu@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-12-16 14:53:21 +0000
committerGravatar courtieu <courtieu@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-12-16 14:53:21 +0000
commit3c4e47b7e829ce7fac8aad85c1a1fd2fce655075 (patch)
treefc1dda3e4bce8f08683c871493bcb8e026ee8d66 /ide/coq_lex.mll
parent80ef72aa037175549f396e9618274ba69a81cf80 (diff)
Adapting coqide to my last commit:
Moving bullets (-, +, *) into stand-alone commands instead of being part of a tactic. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14795 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/coq_lex.mll')
-rw-r--r--ide/coq_lex.mll2
1 files changed, 1 insertions, 1 deletions
diff --git a/ide/coq_lex.mll b/ide/coq_lex.mll
index e937e9875..40163ea9f 100644
--- a/ide/coq_lex.mll
+++ b/ide/coq_lex.mll
@@ -75,7 +75,7 @@ let identchar =
['$' 'A'-'Z' 'a'-'z' '_' '\192'-'\214' '\216'-'\246' '\248'-'\255' '\'' '0'-'9']
let ident = firstchar identchar*
-let undotted_sep = [ '{' '}' ]
+let undotted_sep = [ '{' '}' '-' '+' '*' ]
let dot_sep = '.' (space | eof)