[slime-cvs] CVS slime
jsnellman
jsnellman at common-lisp.net
Thu Feb 22 13:51:02 UTC 2007
Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv21803
Modified Files:
slime.el ChangeLog
Log Message:
* slime.el (slime-start-lisp): Don't cd if no directory was specified.
--- /project/slime/cvsroot/slime/slime.el 2007/02/21 12:06:03 1.762
+++ /project/slime/cvsroot/slime/slime.el 2007/02/22 13:50:53 1.763
@@ -1587,7 +1587,8 @@
"Does the same as `inferior-lisp' but less ugly.
Return the created process."
(with-current-buffer (get-buffer-create buffer)
- (cd (expand-file-name directory))
+ (when directory
+ (cd (expand-file-name directory)))
(comint-mode)
(comint-exec (current-buffer) "inferior-lisp" program nil program-args)
(lisp-mode-variables t)
--- /project/slime/cvsroot/slime/ChangeLog 2007/02/21 12:06:46 1.1070
+++ /project/slime/cvsroot/slime/ChangeLog 2007/02/22 13:50:53 1.1071
@@ -1,3 +1,7 @@
+2007-02-22 Juho Snellman <jsnell at iki.fi>
+
+ * slime.el (slime-start-lisp): Don't cd if no directory was specified.
+
2007-02-21 Marco Baringer <mb at bese.it>
* slime.el (slime-start): Added :directory argument and pass it to
More information about the slime-cvs
mailing list