aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall1999-09-21 17:23:55 +0000
committerDavid Aspinall1999-09-21 17:23:55 +0000
commitf2717061db6a98c681e943754c0d0f7239b4c074 (patch)
tree62e847939740db2f721d4a4bb9bccfff5f0dc690
parentc8e63e5d3d953540a4459272cf13a26935c23c28 (diff)
Comment fix.
Fix for FSF Emacs.
-rw-r--r--generic/proof-shell.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/generic/proof-shell.el b/generic/proof-shell.el
index 96cefd0c..aefa4993 100644
--- a/generic/proof-shell.el
+++ b/generic/proof-shell.el
@@ -833,19 +833,21 @@ Then we call `proof-shell-handle-error-hook'. "
(get-buffer-window proof-goals-buffer t) pos)))))
-(defsubst proof-shell-string-match-safe (regexp string &optional start buffer)
+(defsubst proof-shell-string-match-safe (regexp string)
"Like string-match except returns nil if REGEXP is nil."
- (and regexp (string-match regexp string start buffer)))
+ (and regexp (string-match regexp string)))
(defun proof-shell-process-output (cmd string)
"Process shell output (resulting from CMD) by matching on STRING.
CMD is the first part of the proof-action-list that lead to this
output.
+
This function deals with errors, start of proofs, abortions of
-proofs and completions of proofs. All other output from the proof
+proofs and completions of proofs. All other output from the proof
engine is simply reported to the user in the response buffer
by setting proof-shell-delayed-output to a cons
-cell of (INSERT . TEXT) where TEXT is the text to be inserted.
+cell of ('insert . TEXT) where TEXT is the text string to
+be inserted.
To extend this function, set
proof-shell-process-output-system-specific.