[slime-cvs] CVS slime/contrib
    CVS User nsiivola 
    nsiivola at common-lisp.net
       
    Sun May  8 10:16:24 UTC 2011
    
    
  
Update of /project/slime/cvsroot/slime/contrib
In directory cl-net:/tmp/cvs-serv9457/contrib
Modified Files:
	swank-indentation.lisp 
Log Message:
slime-indentation: make custom indentation hints from CL side work right
    
  * Downcase symbol-names for convenience -- |&lambda| gets tedious
    pretty quick.
    
  * Intern strings in indentation specs on the Emacs side, so that
    complex indentation hints can work.
--- /project/slime/cvsroot/slime/contrib/swank-indentation.lisp	2008/02/03 18:45:14	1.1
+++ /project/slime/cvsroot/slime/contrib/swank-indentation.lisp	2011/05/08 10:16:23	1.2
@@ -21,7 +21,7 @@
                (etypecase indentation-spec
                  (null nil)
                  (number indentation-spec)
-                 (symbol (symbol-name indentation-spec))
+                 (symbol (string-downcase indentation-spec))
                  (cons (cons (walk (car indentation-spec))
                              (walk (cdr indentation-spec)))))))
       (walk indentation))))
    
    
More information about the slime-cvs
mailing list