aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall1999-06-30 15:45:44 +0000
committerDavid Aspinall1999-06-30 15:45:44 +0000
commite0725dc19c023cfed3463c356225b77da9026a15 (patch)
tree90f4e1e49b3445d67d0afbde35b57d12b092642d
parenta301527950dbe24083aa382919cc314759aca381 (diff)
Missing parentheses added. Docstring fix.
-rw-r--r--coq/coq.el11
1 files changed, 5 insertions, 6 deletions
diff --git a/coq/coq.el b/coq/coq.el
index 8edf31ea..97f1e86c 100644
--- a/coq/coq.el
+++ b/coq/coq.el
@@ -79,8 +79,7 @@
"*Command of the inferior process to change the directory.")
(defvar coq-shell-abort-goal-regexp "Current goal aborted"
- "*Regular expression indicating that the proof of the current goal
- has been abandoned.")
+ "*Regexp indicating that the current goal has been abandoned.")
(defvar coq-shell-proof-completed-regexp "Subtree proved!"
"*Regular expression indicating that the proof has been completed.")
@@ -112,22 +111,22 @@
(eval-and-compile
(define-derived-mode coq-shell-mode proof-shell-mode
"coq-shell" nil
- (coq-shell-mode-config))
+ (coq-shell-mode-config)))
(eval-and-compile
(define-derived-mode coq-response-mode proof-response-mode
"CoqResp" nil
- (coq-response-config))
+ (coq-response-config)))
(eval-and-compile
(define-derived-mode coq-mode proof-mode
"coq" nil
- (coq-mode-config))
+ (coq-mode-config)))
(eval-and-compile
(define-derived-mode coq-pbp-mode pbp-mode
"pbp" nil
- (coq-pbp-mode-config))
+ (coq-pbp-mode-config)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Code that's coq specific ;;