aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq/coq-syntax.el
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2006-08-21 18:51:13 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2006-08-21 18:51:13 +0000
commit98e259469d8142d373597901d74671956e209b5f (patch)
treec0e8226319c2d6effa2c60c6e2045ae482be1550 /coq/coq-syntax.el
parent933112fcc5c21c816649ded7cff3564d407ab9d5 (diff)
Menus redesign, new interactive tactics/commands/terms
insertion. Great!
Diffstat (limited to 'coq/coq-syntax.el')
-rw-r--r--coq/coq-syntax.el25
1 files changed, 11 insertions, 14 deletions
diff --git a/coq/coq-syntax.el b/coq/coq-syntax.el
index 30f4a86a..eb227aed 100644
--- a/coq/coq-syntax.el
+++ b/coq/coq-syntax.el
@@ -443,15 +443,10 @@ Print and Check commands, put the following line in your .emacs:
"All commands keyword.")
(defvar coq-tacticals
- '("info" "solve" "first"
- "abstract"
- "do"
- "idtac" ;; also in state-preserving-tactic
- "fail"
- "orelse"
- "repeat"
- "try"
- "Time")
+ '("info" "solve" "first" "abstract" "do" "idtac" ;; also in
+ ;; state-preserving-tactic
+ ;; "fail"
+ "orelse" "repeat" "try" "Time")
"Keywords for tacticals in a Coq script.")
; From JF Monin:
@@ -476,6 +471,8 @@ Print and Check commands, put the following line in your .emacs:
"then"
"using"
"with"
+ "by"
+ "beta" "delta" "iota" "zeta" "after" "until" "at"
)
"Reserved keywords of Coq.")
@@ -500,7 +497,7 @@ Intro and Elim tactics, put the following line in your .emacs:
"assumption"
"auto"
"autorewrite"
- "case"
+ "cases"
"cbv"
"change"
"clear"
@@ -601,12 +598,12 @@ Intro and Elim tactics, put the following line in your .emacs:
(defcustom coq-user-state-preserving-tactics nil
"List of user defined Coq tactics that do not need to be backtracked;
-like \"Idtac\" (no other one to my knowledge ?).
+like \"idtac\" (no other one to my knowledge ?).
-For example if MyIdtac and Do_nthing are user defined variants of the
-Idtac (Nop) tactic, put the following line in your .emacs:
+For example if myidtac and do_nthing are user defined variants of the
+idtac (Nop) tactic, put the following line in your .emacs:
- (setq coq-user-state-preserving-tactics '(\"MyIdtac\" \"Do_nthing\"))"
+ (setq coq-user-state-preserving-tactics '(\"myidtac\" \"do_nthing\"))"
:type '(repeat regexp)
:group 'coq)