aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ide/coq_lex.mll2
-rw-r--r--toplevel/ide_slave.ml2
2 files changed, 2 insertions, 2 deletions
diff --git a/ide/coq_lex.mll b/ide/coq_lex.mll
index 7f91ceee68..2ce8777c3c 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
diff --git a/toplevel/ide_slave.ml b/toplevel/ide_slave.ml
index 72ebecfa70..ee231b0445 100644
--- a/toplevel/ide_slave.ml
+++ b/toplevel/ide_slave.ml
@@ -148,7 +148,7 @@ let rec attribute_of_vernac_command = function
(* Proof management *)
| VernacGoal _ -> [GoalStartingCommand]
- | VernacAbort _ -> [NavigationCommand]
+ | VernacAbort _ -> []
| VernacAbortAll -> [NavigationCommand]
| VernacRestart -> [NavigationCommand]
| VernacSuspend -> [NavigationCommand]