aboutsummaryrefslogtreecommitdiff
path: root/proof.el
diff options
context:
space:
mode:
authorDavid Aspinall1998-08-11 11:43:14 +0000
committerDavid Aspinall1998-08-11 11:43:14 +0000
commit77687d352a1b1bcb5d359b6ee1dd8a29ec3c31ae (patch)
tree338c5fa96b344a06bc167fb4b5989bea0db6023b /proof.el
parent1ad05a7d629eb4240930ddc7b3a3e6f1828a1841 (diff)
Renamed <file>-fontlock to <file>-syntax
Diffstat (limited to 'proof.el')
-rw-r--r--proof.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/proof.el b/proof.el
index 7522d8fc..802078ae 100644
--- a/proof.el
+++ b/proof.el
@@ -16,7 +16,7 @@
(cond ((fboundp 'make-extent) (require 'span-extent))
((fboundp 'make-overlay) (require 'span-overlay))
(t nil))
-(require 'proof-fontlock)
+(require 'proof-syntax)
(require 'proof-indent)
(require 'easymenu)
@@ -803,7 +803,8 @@
((string-match proof-shell-interrupt-regexp string)
'interrupt)
- ((string-match proof-shell-abort-goal-regexp string)
+ ((and proof-shell-abort-goal-regexp
+ (string-match proof-shell-abort-goal-regexp string))
(setq proof-shell-delayed-output (cons 'insert "\n\nAborted"))
())
@@ -835,7 +836,6 @@
(funcall (cdr proof-shell-process-output-system-specific)
cmd string))
-
(t (setq proof-shell-delayed-output (cons 'insert string)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;