aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/coq_lex.mll
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-05-18 13:31:29 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-05-18 13:31:29 +0000
commitd85e6bd09c32291e20962e29d739f2ffbe23c98f (patch)
tree607c08c811b245f8a8f06f43d28b66dfa2abdd2b /ide/coq_lex.mll
parent7e52f7728dcfcede7e40455385f3eef05a499c0d (diff)
Coqide: allow the use of Abort (grant wish #2357)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14136 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 7f91ceee6..2ce8777c3 100644
--- a/ide/coq_lex.mll
+++ b/ide/coq_lex.mll
@@ -65,7 +65,7 @@
let is_proof_end =
let h = Hashtbl.create 97 in
List.iter (fun s -> Hashtbl.add h s ())
- [ "Qed" ; "Defined" ; "Admitted" ];
+ [ "Qed" ; "Defined" ; "Admitted"; "Abort" ];
Hashtbl.mem h
let start = ref true