[slime-cvs] CVS slime/contrib
CVS User sboukarev
sboukarev at common-lisp.net
Sat Jul 11 19:20:18 UTC 2009
Update of /project/slime/cvsroot/slime/contrib
In directory cl-net:/tmp/cvs-serv29168
Modified Files:
ChangeLog slime-parse.el
Log Message:
* slime-parse.el (slime-make-form-spec-from-string):
Set syntax table to lisp-mode-syntax-table in a temporary buffer.
Necessary for some parsing functions to work correctly.
--- /project/slime/cvsroot/slime/contrib/ChangeLog 2009/07/04 09:54:16 1.222
+++ /project/slime/cvsroot/slime/contrib/ChangeLog 2009/07/11 19:20:18 1.223
@@ -1,3 +1,9 @@
+2009-07-11 Stas Boukarev <stassats at gmail.com>
+
+ * slime-parse.el (slime-make-form-spec-from-string):
+ set syntax table to lisp-mode-syntax-table in a temporary buffer.
+ Necessary for some parsing functions to work correctly.
+
2009-07-04 Tobias C. Rittweiler <tcr at freebits.de>
Fix font-lock magic for s-code.lisp in the series package.
--- /project/slime/cvsroot/slime/contrib/slime-parse.el 2009/05/01 18:09:43 1.22
+++ /project/slime/cvsroot/slime/contrib/slime-parse.el 2009/07/11 19:20:18 1.23
@@ -235,6 +235,7 @@
;; Do NEVER ever try to activate `lisp-mode' here with
;; `slime-use-autodoc-mode' enabled, as this function is used
;; to compute the current autodoc itself.
+ (set-syntax-table lisp-mode-syntax-table)
(erase-buffer)
(insert string)
(when strip-operator-p ; `(OP arg1 arg2 ...)' ==> `(arg1 arg2 ...)'
More information about the slime-cvs
mailing list