aboutsummaryrefslogtreecommitdiff
path: root/proof.el
diff options
context:
space:
mode:
authorDilip Sequiera1997-11-10 15:51:09 +0000
committerDilip Sequiera1997-11-10 15:51:09 +0000
commit6a4e1071f067e11bd49e231be7112585ffb13026 (patch)
tree4d8a1b7749c5ea85c5aa92807ed6b601a8d61e9d /proof.el
parente1277b1abb0aab10488142c86ac030becc368547 (diff)
Put in a workaround for a strange bug in comint which was finding a bunch
of ^G's from comint-get-old-input for some inexplicable reason.
Diffstat (limited to 'proof.el')
-rw-r--r--proof.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/proof.el b/proof.el
index 2f02b0d1..86708dcd 100644
--- a/proof.el
+++ b/proof.el
@@ -19,6 +19,10 @@
;; report
;; $Log$
+;; Revision 1.22 1997/11/10 15:51:09 djs
+;; Put in a workaround for a strange bug in comint which was finding a bunch
+;; of ^G's from comint-get-old-input for some inexplicable reason.
+;;
;; Revision 1.21 1997/11/06 16:56:59 hhg
;; Parameterize by proof-goal-hyp-fn in pbp-make-top-extent, to handle
;; Coq goals which start with text rather than simply ?n
@@ -462,6 +466,7 @@
(save-excursion
(set-buffer proof-shell-buffer)
+ (setq comint-get-old-input (function (lambda () "")))
(funcall proof-mode-for-shell)
(set-buffer proof-pbp-buffer)
(funcall proof-mode-for-pbp))