[slime-cvs] CVS slime

trittweiler trittweiler at common-lisp.net
Fri Sep 26 12:24:54 UTC 2008


Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv7422

Modified Files:
	slime.el ChangeLog 
Log Message:

* slime.el (slime-cycle-connections): Do not make the new
  connection buffer-local if we're currently in a REPL buffer.


--- /project/slime/cvsroot/slime/slime.el	2008/09/24 09:14:15	1.1043
+++ /project/slime/cvsroot/slime/slime.el	2008/09/26 12:24:53	1.1044
@@ -1862,7 +1862,8 @@
                    slime-net-processes))
          (p (car tail)))
     (slime-select-connection p)
-    (setq slime-buffer-connection p)
+    (unless (eq major-mode 'slime-repl-mode)
+      (setq slime-buffer-connection p))
     (message "Lisp: %s %s" (slime-connection-name p) (process-contact p))))
 
 (defmacro* slime-with-connection-buffer ((&optional process) &rest body)
--- /project/slime/cvsroot/slime/ChangeLog	2008/09/24 09:14:13	1.1543
+++ /project/slime/cvsroot/slime/ChangeLog	2008/09/26 12:24:54	1.1544
@@ -1,3 +1,8 @@
+2008-09-25  Tobias C. Rittweiler  <tcr at freebits.de>
+
+	* slime.el (slime-cycle-connections): Do not make the new
+	connection buffer-local if we're currently in a REPL buffer.
+
 2008-09-24  Knut Olav Bøhmer <knut-olav.bohmer at telenor.com>
 
 	* slime.el (slime-cycle-connections): New command.




More information about the slime-cvs mailing list