[slime-cvs] CVS slime/contrib
CVS User nsiivola
nsiivola at common-lisp.net
Fri Jun 10 19:02:09 UTC 2011
Update of /project/slime/cvsroot/slime/contrib
In directory common-lisp.net:/tmp/cvs-serv26777/contrib
Modified Files:
ChangeLog slime-cl-indent.el
Log Message:
slime-indentation: missing paren
--- /project/slime/cvsroot/slime/contrib/ChangeLog 2011/06/10 17:13:04 1.475
+++ /project/slime/cvsroot/slime/contrib/ChangeLog 2011/06/10 19:02:09 1.476
@@ -1,5 +1,8 @@
2011-06-10 Nikodemus Siivola <nikodemus at random-state.net>
+ * slime-cl-indent.el (common-lisp-indent-function-1): Missing
+ paren. Teaches me to to paredit.
+
Take , and ,@ into account properly.
* slime-cl-indent.el (common-lisp-indent-function-1): Adjust
--- /project/slime/cvsroot/slime/contrib/slime-cl-indent.el 2011/06/10 17:13:04 1.38
+++ /project/slime/cvsroot/slime/contrib/slime-cl-indent.el 2011/06/10 19:02:09 1.39
@@ -664,7 +664,7 @@
;; If we're looking at a splice, move to the first comma.
(when (or (looking-back ",") (looking-back ",@"))
(when (re-search-backward "[^,@'],")
- (forward-char 1))
+ (forward-char 1)))
(let ((normal-indent (current-column)))
;; Walk up list levels until we see something
;; which does special things with subforms.
More information about the slime-cvs
mailing list