aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall2000-09-28 09:14:38 +0000
committerDavid Aspinall2000-09-28 09:14:38 +0000
commitf5b76a18babb6c6f0f4c4db33d60ac1d98a815f6 (patch)
treee427edf04b852530bc9a0b2656981cbfdf0cef9b
parent41ffd7a69ab0c181d6ad3c8866e24b4feebcde70 (diff)
Added proof-shell-strip-crs-from-input.
-rw-r--r--generic/proof-shell.el30
1 files changed, 11 insertions, 19 deletions
diff --git a/generic/proof-shell.el b/generic/proof-shell.el
index 2a7bc5a5..9c078c78 100644
--- a/generic/proof-shell.el
+++ b/generic/proof-shell.el
@@ -1007,27 +1007,18 @@ proof-shell-exec-loop, to process the next item."
(set-buffer proof-shell-buffer)
(goto-char (point-max))
- ;; See docstring for this hook
+ ;; See docstring for this hook: it allows munging of `string'
+ ;; amongst other hacks.
(run-hooks 'proof-shell-insert-hook)
- ;; Now we replace CRs from string with spaces. This was done in
- ;; "proof-send" previously and this function
- ;; allowed for input with CRs to be sent. But it was never
- ;; used. The only place this was called instead of proof-send
- ;; was for proof-shell-init-cmd, but now that is sent via
- ;; proof-shell-invisible-command instead.
-
- ;; HYPOTHESIS da: I don't know why proof-send strips CRs, no
- ;; hints were given in the original code. I assume it is needed
- ;; because several CR's can result in several prompts, and
- ;; we want to stick to the one prompt per output chunk scenario.
- ;; (However stripping carriage returns might just be
- ;; plain WRONG for some theorem prover's syntax, possibly)
-
- (let ((l (length string)) (i 0))
- (while (< i l)
- (if (= (aref string i) ?\n) (aset string i ?\ ))
- (incf i)))
+ ;; Now we replace CRs from string with spaces. This is done
+ ;; in case CRs in the input strip produce spurious prompts.
+
+ (if proof-shell-strip-crs-from-input
+ (let ((l (length string)) (i 0))
+ (while (< i l)
+ (if (= (aref string i) ?\n) (aset string i ?\ ))
+ (incf i))))
(insert string)
@@ -1045,6 +1036,7 @@ proof-shell-exec-loop, to process the next item."
;; FIXME da: this space fudge is actually a visible hack:
;; the response string begins with a space and a newline.
+ ;; It was needed to work around differences in Emacs versions.
(insert proof-shell-insert-space-fudge)
(comint-send-input)))