aboutsummaryrefslogtreecommitdiff
path: root/proof.el
diff options
context:
space:
mode:
authorHealfdene Goguen1998-06-11 12:20:35 +0000
committerHealfdene Goguen1998-06-11 12:20:35 +0000
commit90fa6289aff871fc53d646af37894b0ad658cd34 (patch)
treebea31f1cc5edf15cde841215c7e7055b022a8b1d /proof.el
parent86471cef573a4ece8829ff1862b8b6ac481cdba4 (diff)
Moved proof-mode-hooks from proof-shell-config-done to
proof-config-done.
Diffstat (limited to 'proof.el')
-rw-r--r--proof.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/proof.el b/proof.el
index 66ced247..0e9cc472 100644
--- a/proof.el
+++ b/proof.el
@@ -9,6 +9,10 @@
;; $Log$
+;; Revision 1.57 1998/06/11 12:20:35 hhg
+;; Moved proof-mode-hooks from proof-shell-config-done to
+;; proof-config-done.
+;;
;; Revision 1.56 1998/06/10 14:00:21 hhg
;; In proof-init-segmentation, only create proof-queue-span and
;; proof-locked-span if they don't already exist.
@@ -2009,7 +2013,9 @@ current command."
;; if we don't have the following, zap-commas fails to work.
(and (boundp 'font-lock-always-fontify-immediately)
- (setq font-lock-always-fontify-immediately t)))
+ (setq font-lock-always-fontify-immediately t))
+
+ (run-hooks 'proof-mode-hook))
(defun proof-shell-config-done ()
(accept-process-output (get-buffer-process (current-buffer)))
@@ -2033,9 +2039,7 @@ current command."
(while (null (marker-position proof-marker))
(if (accept-process-output (get-buffer-process (current-buffer)) 15)
()
- (error "Failed to initialise proof process")))
-
- (run-hooks 'proof-mode-hook))
+ (error "Failed to initialise proof process"))))
(define-derived-mode pbp-mode fundamental-mode
"Proof" "Proof by Pointing"