[slime-cvs] CVS update: slime/slime.el
Helmut Eller
heller at common-lisp.net
Sun Apr 25 06:32:21 UTC 2004
Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv14983
Modified Files:
slime.el
Log Message:
(slime-set-connection-info): Hide the *inferior-lisp* buffer here, so
that we have all the buffer rearrangement in one place.
(slime-insert-arglist): Use swank:arglist-for-insertion.
Date: Sun Apr 25 02:32:20 2004
Author: heller
Index: slime/slime.el
diff -u slime/slime.el:1.275 slime/slime.el:1.276
--- slime/slime.el:1.275 Fri Apr 23 18:09:11 2004
+++ slime/slime.el Sun Apr 25 02:32:20 2004
@@ -1147,10 +1147,7 @@
(message "Connecting to Swank on port %S.." port)
(let* ((process (slime-net-connect host port))
(slime-dispatching-connection process))
- (slime-init-connection process)
- (when-let (buffer (get-buffer "*inferior-lisp*"))
- (delete-windows-on buffer)
- (bury-buffer buffer))))
+ (slime-init-connection process)))
(defun slime-changelog-date ()
"Return the datestring of the latest entry in the ChangeLog file.
@@ -1633,10 +1630,13 @@
(slime-lisp-implementation-type-name) name
(slime-connection-name) (slime-generate-connection-name name)
(slime-lisp-features) features))
- (slime-init-output-buffer process)
(setq slime-state-name "")
(when slime-global-debugger-hook
(slime-eval '(swank:install-global-debugger-hook)))
+ (when-let (buffer (get-buffer "*inferior-lisp*"))
+ (delete-windows-on buffer)
+ (bury-buffer buffer))
+ (slime-init-output-buffer process)
(message "Connected on port %S. %s"
(slime-connection-port connection)
(slime-random-words-of-encouragement))
@@ -3289,7 +3289,7 @@
"Insert the argument list for NAME behind the symbol point is
currently looking at."
(interactive (list (slime-read-symbol-name "Arglist of: ")))
- (insert (slime-eval `(swank:arglist-for-echo-area (quote (,name)) t)
+ (insert (slime-eval `(swank:arglist-for-insertion ',name)
(slime-buffer-package))))
(defun slime-get-arglist (symbol-name)
More information about the slime-cvs
mailing list