aboutsummaryrefslogtreecommitdiff
path: root/coq/coq.el
diff options
context:
space:
mode:
authorPierre Courtieu2010-09-01 13:34:37 +0000
committerPierre Courtieu2010-09-01 13:34:37 +0000
commitc1955a6fa62b94b1906a199638caf293f29319a8 (patch)
tree37a6c650c07539b1686d02ad7bc3876b0627efca /coq/coq.el
parent06fb36588deb414cbe62699dc8ec2292aa9c8a71 (diff)
Fixed bug #346. Coq code was using proof-ids-to-regexp on regexp
instead of pure strings.
Diffstat (limited to 'coq/coq.el')
-rw-r--r--coq/coq.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/coq/coq.el b/coq/coq.el
index 19fef2a5..034eb910 100644
--- a/coq/coq.el
+++ b/coq/coq.el
@@ -161,17 +161,17 @@ On Windows you might need something like:
;; some of them must kept when v8.1 because they are used by state preserving
;; check when C-c C-v
(defconst coq-state-preserving-tactics-regexp
- (proof-ids-to-regexp coq-state-preserving-tactics))
+ (proof-regexp-alt-list coq-state-preserving-tactics))
(defconst coq-state-changing-commands-regexp
- (proof-ids-to-regexp coq-keywords-state-changing-commands))
+ (proof-regexp-alt-list coq-keywords-state-changing-commands))
(defconst coq-state-preserving-commands-regexp
- (proof-ids-to-regexp coq-keywords-state-preserving-commands))
+ (proof-regexp-alt-list coq-keywords-state-preserving-commands))
(defconst coq-commands-regexp
- (proof-ids-to-regexp coq-keywords-commands))
+ (proof-regexp-alt-list coq-keywords-commands))
(defvar coq-retractable-instruct-regexp
- (proof-ids-to-regexp coq-retractable-instruct))
+ (proof-regexp-alt-list coq-retractable-instruct))
(defvar coq-non-retractable-instruct-regexp
- (proof-ids-to-regexp coq-non-retractable-instruct))
+ (proof-regexp-alt-list coq-non-retractable-instruct))
;;
;; Derived modes - define keymaps