[slime-cvs] CVS update: slime/ChangeLog slime/slime.el
Christophe Rhodes
crhodes at common-lisp.net
Fri Jul 9 12:09:18 UTC 2004
Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv4709
Modified Files:
ChangeLog slime.el
Log Message:
Substitute hyphens for spaces in the sbcl manual URL references
Date: Fri Jul 9 05:09:18 2004
Author: crhodes
Index: slime/ChangeLog
diff -u slime/ChangeLog:1.464 slime/ChangeLog:1.465
--- slime/ChangeLog:1.464 Wed Jul 7 08:10:08 2004
+++ slime/ChangeLog Fri Jul 9 05:09:18 2004
@@ -1,3 +1,8 @@
+2004-07-09 Christophe Rhodes <csr21 at cam.ac.uk>
+
+ * slime.el (sldb-lookup-reference): substitute hyphens for spaces
+ in the url.
+
2004-07-07 Thomas Schilling <tjs_ng at yahoo.de>
* swank.lisp (arglist-for-insertion): Changed formatting to use
Index: slime/slime.el
diff -u slime/slime.el:1.357 slime/slime.el:1.358
--- slime/slime.el:1.357 Wed Jul 7 05:05:24 2004
+++ slime/slime.el Fri Jul 9 05:09:18 2004
@@ -5589,7 +5589,8 @@
(slime-cl-symbol-name what)
what)))))
(t
- (let ((url (format "%s%s.html" slime-sbcl-manual-root what)))
+ (let ((url (format "%s%s.html" slime-sbcl-manual-root
+ (subst-char-in-string ?\ ?\- what))))
(browse-url url))))))
(defun sldb-insert-restarts (restarts)
More information about the slime-cvs
mailing list