aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic
diff options
context:
space:
mode:
authorGravatar Patrick Loiseleur <da+pg-patrl@inf.ed.ac.uk>1999-06-14 15:28:26 +0000
committerGravatar Patrick Loiseleur <da+pg-patrl@inf.ed.ac.uk>1999-06-14 15:28:26 +0000
commit222c559e790c1fb54b265b30716e589ca53fb2bf (patch)
tree71b7146cdde15555500ad46a298a6699297e3571 /generic
parent9652b0a9723f4e5ca9438b62d2d7bca64eca2c01 (diff)
Bugfixes in proof-shell-exit and proof-shell-kill-function
Diffstat (limited to 'generic')
-rw-r--r--generic/proof-shell.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/proof-shell.el b/generic/proof-shell.el
index 64fd86ba..719236a7 100644
--- a/generic/proof-shell.el
+++ b/generic/proof-shell.el
@@ -377,7 +377,8 @@ proof-shell-kill-function to do the hard work."
(interactive)
(if (buffer-live-p proof-shell-buffer)
(if (yes-or-no-p (format "Exit %s process? " proof-assistant))
- (kill-buffer proof-shell-buffer)
+ (progn (kill-buffer proof-shell-buffer)
+ (setq proof-shell-buffer nil))
(error "No proof shell buffer to kill!"))))
(defun proof-shell-bail-out (process event)