[slime-cvs] CVS slime/contrib
CVS User nsiivola
nsiivola at common-lisp.net
Sun May 15 17:26:01 UTC 2011
Update of /project/slime/cvsroot/slime/contrib
In directory common-lisp.net:/tmp/cvs-serv2089/contrib
Modified Files:
ChangeLog slime-cl-indent.el
Log Message:
Make sure indent-tabs-mode is nil in tests.
--- /project/slime/cvsroot/slime/contrib/ChangeLog 2011/05/15 17:25:15 1.450
+++ /project/slime/cvsroot/slime/contrib/ChangeLog 2011/05/15 17:26:01 1.451
@@ -1,5 +1,11 @@
2011-05-15 Didier Verna <didier at xemacs.org>
+ * slime-cl-indent.el (test-lisp-indent): Make sure
+ indent-tabs-mode is nil in the test buffer. Otherwise, spaces may
+ be converted into tabs which would make the tests fail.
+
+2011-05-15 Didier Verna <didier at xemacs.org>
+
* slime-cl-indent.el (lisp-indent-tagbody):
(lisp-indent-lambda-list): Use back-to-indentation.
--- /project/slime/cvsroot/slime/contrib/slime-cl-indent.el 2011/05/15 17:25:15 1.16
+++ /project/slime/cvsroot/slime/contrib/slime-cl-indent.el 2011/05/15 17:26:01 1.17
@@ -1014,6 +1014,7 @@
(dolist (test tests)
(with-temp-buffer
(lisp-mode)
+ (setq indent-tabs-mode nil)
(when (consp test)
(dolist (bind (first test))
(make-variable-buffer-local (first bind))
More information about the slime-cvs
mailing list