Index: slime/contrib/ChangeLog diff -u slime/contrib/ChangeLog:1.121 slime/contrib/ChangeLog:1.123 --- slime/contrib/ChangeLog:1.121 Mon Aug 18 05:20:21 2008 +++ slime/contrib/ChangeLog Wed Aug 20 17:46:09 2008 @@ -1,3 +1,14 @@ +2008-08-20 Tobias C. Rittweiler tcr@freebits.de + + * slime-fontifying-fu.el: New contrib; fontify with-foo and do-foo + like standard macros. + + * slime-fancy.el: Add slime-fontifying-fu. + +2008-08-20 Luís Oliveira loliveira@common-lisp.net + + * contrib/slime-indentation.el: fix indentation of IF forms. + 2008-08-18 Ariel Badichi abadichi@bezeqint.net
* slime-fuzzy.el: Rename `add-local-hook' to `slime-add-local-hook'.
mbaringer@common-lisp.net (Marco Baringer) writes:
+2008-08-20 Tobias C. Rittweiler tcr@freebits.de
- slime-fontifying-fu.el: New contrib; fontify with-foo and do-foo
- like standard macros.
Cool, I've been using something like this for a while. My version applies to def* as well, so it fontifies defcfun, deftest, etc. However, my regex also matches thing like "default". Anybody have enough regex-fu to deal with this properly?
Or perhaps it would be more interesting to fontify every macro using some mechanism similar to what is currently done for indentation.
Luis Oliveira luismbo@gmail.com writes:
Or perhaps it would be more interesting to fontify every macro using some mechanism similar to what is currently done for indentation.
I've got a local tree doing that. I haven't yet got the time to bring this up-to-date.
-T.