[slime-cvs] CVS slime

CVS User trittweiler trittweiler at common-lisp.net
Sun May 10 12:52:48 UTC 2009


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

Modified Files:
	ChangeLog slime.el 
Log Message:
	* slime.el (slime-compute-region-for-font-lock): Fix typo.


--- /project/slime/cvsroot/slime/ChangeLog	2009/05/10 10:11:18	1.1740
+++ /project/slime/cvsroot/slime/ChangeLog	2009/05/10 12:52:48	1.1741
@@ -1,5 +1,9 @@
 2009-05-10  Tobias C. Rittweiler  <tcr at freebits.de>
 
+	* slime.el (slime-compute-region-for-font-lock): Fix typo.
+
+2009-05-10  Tobias C. Rittweiler  <tcr at freebits.de>
+
 	Font-lock magic barfed on #+(test).
 
 	* slime.el (slime-eval-feature-conditional): Renamed to
--- /project/slime/cvsroot/slime/slime.el	2009/05/10 10:13:17	1.1162
+++ /project/slime/cvsroot/slime/slime.el	2009/05/10 12:52:48	1.1163
@@ -6805,7 +6805,9 @@
 
 (defun slime-compute-region-for-font-lock (orig-beg orig-end)
   (condition-case nil
-      (let ((changedp nil) (beg orig-beg) (end (orig-end)))
+      (let ((changedp nil)
+            (beg orig-beg)
+            (end orig-end))
         (goto-char beg)
         (when (plusp (nth 0 (slime-current-parser-state)))
           ;; N.B. take initial reader-conditional into account, otherwise





More information about the slime-cvs mailing list