aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Aspinall2005-09-27 12:17:28 +0000
committerDavid Aspinall2005-09-27 12:17:28 +0000
commit77aed66b6a4395916c178dbeb41b8112bccf636d (patch)
tree2339e1e741bdb5e03598d70399f06c16238cb37e
parentda1430884d485384b3e106d4add309feb4147cac (diff)
Shorter aux buffer names
-rw-r--r--generic/proof-shell.el11
1 files changed, 4 insertions, 7 deletions
diff --git a/generic/proof-shell.el b/generic/proof-shell.el
index 1c690f1c..a19d84e3 100644
--- a/generic/proof-shell.el
+++ b/generic/proof-shell.el
@@ -280,9 +280,6 @@ Does nothing if proof assistant is already running."
(setq proof-prog-name (read-shell-command "Run process: "
proof-prog-name))))
(let
- ;; PG 3.1: Buffer names are now based simply on proof assistant
- ;; name, not process name which was a bit lowlevel and sometimes
- ;; ugly (coqtop, hol.unquote).
((proc (downcase proof-assistant)))
(message "Starting process: %s" proof-prog-name)
@@ -350,10 +347,10 @@ Does nothing if proof assistant is already running."
;; NB: 3.6 has reverted space in front of names, so buffers
;; are easier for users to find, was causing confusion.
;;
- (let ((goals (concat "*" proc "-goals*"))
- (resp (concat "*" proc "-response*"))
- (trace (concat "*" proc "-trace*"))
- (thms (concat "*" proc "-thms*")))
+ (let ((goals "*goals*")
+ (resp "*response*")
+ (trace "*trace*")
+ (thms "*thms*"))
(setq proof-goals-buffer (get-buffer-create goals))
(setq proof-response-buffer (get-buffer-create resp))
(if proof-shell-trace-output-regexp