diff options
| author | David Aspinall | 1999-09-23 17:08:19 +0000 |
|---|---|---|
| committer | David Aspinall | 1999-09-23 17:08:19 +0000 |
| commit | 801b00c8bbce3e973eac45e8ecf3d3aa3678e116 (patch) | |
| tree | d02aa294b2d4c642e822db5c0c4e4759aeb988ec | |
| parent | 6dd662ac501348018474ba60ad28b0b7a6619ee3 (diff) | |
Trivial.
| -rw-r--r-- | generic/proof-shell.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/generic/proof-shell.el b/generic/proof-shell.el index 7595e3f7..24ae9e5e 100644 --- a/generic/proof-shell.el +++ b/generic/proof-shell.el @@ -192,9 +192,12 @@ Runs proof-state-change-hook to notify state change." Also generates goal and response buffers. Does nothing if proof assistant is already running." (interactive) - (if (proof-shell-live-buffer) - () + (unless (proof-shell-live-buffer) + + ;; This should configure the generic variables (run-hooks 'proof-pre-shell-start-hook) + + ;; Clear some state (setq proof-included-files-list nil) ;; Added 05/99 by Patrick L. |
