[slime-cvs] CVS update: slime/slime.el slime/ChangeLog

Luke Gorrie lgorrie at common-lisp.net
Thu Dec 11 19:31:46 UTC 2003


Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv21994

Modified Files:
	slime.el ChangeLog 
Log Message:
(slime-xrefs-for-notes): Commented out use of
`replace-regexp-in-string' (not available in emacs20, and not sure why
we need it?)

Date: Thu Dec 11 14:31:46 2003
Author: lgorrie

Index: slime/slime.el
diff -u slime/slime.el:1.141 slime/slime.el:1.142
--- slime/slime.el:1.141	Thu Dec 11 12:08:55 2003
+++ slime/slime.el	Thu Dec 11 14:31:45 2003
@@ -2094,10 +2094,14 @@
              (node
               (cons (format "%s: %s" 
                             (getf note :severity)
-                            (replace-regexp-in-string 
-                             "[^[:graph:]]+" " "
-                             (subseq (getf note :message) 0 )))
+                            (getf note :message))
                     location)))
+        ;; emacs20 doesn't have `replace-regexp-in-string'
+        ;; but who gives us non-printable characters anyway and why? -luke
+;                             (replace-regexp-in-string 
+;                              "[^[:graph:]]+" " "
+;                              (subseq (getf note :message) 0 )))
+;                     location)))
         (when fn
           (if file
               (push node (cdr file))


Index: slime/ChangeLog
diff -u slime/ChangeLog:1.151 slime/ChangeLog:1.152
--- slime/ChangeLog:1.151	Thu Dec 11 11:37:31 2003
+++ slime/ChangeLog	Thu Dec 11 14:31:45 2003
@@ -1,3 +1,9 @@
+2003-12-11  Luke Gorrie  <luke at bluetail.com>
+
+	* slime.el (slime-xrefs-for-notes): Commented out use of
+	`replace-regexp-in-string' (not available in emacs20, and not sure
+	why we need it?)
+
 2003-12-11  Daniel Barlow  <dan at telent.net>
 
 	* swank-sbcl.lisp (compiler-note-location): replace with





More information about the slime-cvs mailing list