[slime-cvs] CVS slime

CVS User sboukarev sboukarev at common-lisp.net
Fri Sep 3 22:29:43 UTC 2010


Update of /project/slime/cvsroot/slime
In directory cl-net:/tmp/cvs-serv9950

Modified Files:
	ChangeLog slime.el 
Log Message:
* slime.el (slime-forward-cruft): Use " \t\n" to match whitespaces
instead of [:space:], XEmacs compatibility.


--- /project/slime/cvsroot/slime/ChangeLog	2010/09/03 07:25:19	1.2137
+++ /project/slime/cvsroot/slime/ChangeLog	2010/09/03 22:29:43	1.2138
@@ -1,3 +1,8 @@
+2010-09-03  Stas Boukarev  <stassats at gmail.com>
+
+	* slime.el (slime-forward-cruft): Use " \t\n" to match whitespaces
+	instead of [:space:], XEmacs compatibility.
+
 2010-09-03  Helmut Eller  <heller at common-lisp.net>
 
 	For C-c C-k, ask before loading possibly broken fasl files.
--- /project/slime/cvsroot/slime/slime.el	2010/09/03 07:25:19	1.1337
+++ /project/slime/cvsroot/slime/slime.el	2010/09/03 22:29:43	1.1338
@@ -8435,7 +8435,7 @@
 
 (defun slime-forward-cruft ()
   "Move forward over whitespace, comments, reader conditionals."
-  (while (slime-point-moves-p (skip-chars-forward "[:space:]")
+  (while (slime-point-moves-p (skip-chars-forward " \t\n")
                               (forward-comment (buffer-size))
                               (inline (slime-forward-reader-conditional)))))
 





More information about the slime-cvs mailing list