[slime-cvs] CVS slime
CVS User sboukarev
sboukarev at common-lisp.net
Sat Dec 24 17:45:24 UTC 2011
Update of /project/slime/cvsroot/slime
In directory tiger.common-lisp.net:/tmp/cvs-serv26765
Modified Files:
ChangeLog slime.el
Log Message:
* slime.el (slime-init-command): Don't call
`slime-to-lisp-filename', the lisp is not yet connected and if
there's another connection it will use the wrong translation.
* contrib/slime-tramp.el (slime-find-filename-translators): Don't signal
an error if there's no translators for a hostname, just use 'identity.
--- /project/slime/cvsroot/slime/ChangeLog 2011/12/24 05:01:25 1.2290
+++ /project/slime/cvsroot/slime/ChangeLog 2011/12/24 17:45:23 1.2291
@@ -1,5 +1,11 @@
2011-12-24 Stas Boukarev <stassats at gmail.com>
+ * slime.el (slime-init-command): Don't call
+ `slime-to-lisp-filename', the lisp is not yet connected and if
+ there's another connection it will use the wrong translation.
+
+2011-12-24 Stas Boukarev <stassats at gmail.com>
+
* swank.lisp (throw-to-toplevel): If *sldb-quit-restart* is not
found, try to invoke the last restart, which usually is a
top-level abort restart. This is useful when the debugger is
--- /project/slime/cvsroot/slime/slime.el 2011/12/23 20:03:15 1.1391
+++ /project/slime/cvsroot/slime/slime.el 2011/12/24 17:45:23 1.1392
@@ -1345,11 +1345,11 @@
;; Return a single form to avoid problems with buffered input.
(format "%S\n\n"
`(progn
- (load ,(slime-to-lisp-filename (expand-file-name loader))
+ (load ,(expand-file-name loader)
:verbose t)
(funcall (read-from-string "swank-loader:init"))
(funcall (read-from-string "swank:start-server")
- ,(slime-to-lisp-filename port-filename))))))
+ ,port-filename)))))
(defun slime-swank-port-file ()
"Filename where the SWANK server writes its TCP port number."
More information about the slime-cvs
mailing list