[slime-cvs] CVS slime

CVS User sboukarev sboukarev at common-lisp.net
Tue Nov 3 15:14:41 UTC 2009


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

Modified Files:
	ChangeLog slime.el 
Log Message:
* slime.el (sldb-setup): Do (set-syntax-table lisp-mode-syntax-table)
otherwise functions used by autodoc do not work properly.


--- /project/slime/cvsroot/slime/ChangeLog	2009/11/03 14:35:31	1.1909
+++ /project/slime/cvsroot/slime/ChangeLog	2009/11/03 15:14:41	1.1910
@@ -1,7 +1,12 @@
 2009-11-03  Stas Boukarev  <stassats at gmail.com>
 
-	* slime.el (sldb-backward-frame): If the point is at the end of the buffer,
-	there is no property, handle this case.
+	* slime.el (sldb-setup): Do (set-syntax-table lisp-mode-syntax-table)
+	otherwise functions used by autodoc do not work properly.
+
+2009-11-03  Stas Boukarev  <stassats at gmail.com>
+
+	* slime.el (sldb-backward-frame): If the point is at the end of
+	the buffer, there is no property, handle this case.
 
 	* swank.lisp (collect-notes): LOAD returns generalized boolean,
 	not just boolean, but make-compilation-result accepts only booleans
--- /project/slime/cvsroot/slime/slime.el	2009/11/03 14:33:31	1.1247
+++ /project/slime/cvsroot/slime/slime.el	2009/11/03 15:14:41	1.1248
@@ -5444,7 +5444,8 @@
         (if frames 
             (sldb-insert-frames (sldb-prune-initial-frames frames) t)
           (insert "[No backtrace]")))
-      (run-hooks 'sldb-hook))
+      (run-hooks 'sldb-hook)
+      (set-syntax-table lisp-mode-syntax-table))
     (slime-display-popup-buffer t)
     (sldb-recenter-region (point-min) (point))
     (setq buffer-read-only t)





More information about the slime-cvs mailing list