Index: slime/ChangeLog diff -u slime/ChangeLog:1.2067 slime/ChangeLog:1.2069 --- slime/ChangeLog:1.2067 Sat Apr 17 14:10:20 2010 +++ slime/ChangeLog Sun Apr 18 20:42:28 2010 @@ -1,3 +1,19 @@ +2010-04-19 Stas Boukarev stassats@gmail.com + + * swank.lisp (symbol-classification-string): New function to + replace (symbol-classification->string (classify-symbol + symbol)). It's faster and conses much less, while it is called + many times by fuzzy completion and fancy inspector. + (symbol-classification->string): Removed. + (list-threads): Exclude the current thread only if its name is + "worker". + +2010-04-18 Stas Boukarev stassats@gmail.com + + * slime.el (slime-threads-update-interval): Add :group and :type + parameters to this customization. + Thanks to Mark Harig. + 2010-04-17 Stas Boukarev stassats@gmail.com
* slime.el (slime-threads-update-interval): New customization
Index: slime/ChangeLog diff -u slime/ChangeLog:1.2067 slime/ChangeLog:1.2069 --- slime/ChangeLog:1.2067 Sat Apr 17 14:10:20 2010 +++ slime/ChangeLog Sun Apr 18 20:42:28 2010 @@ -1,3 +1,19 @@ + +2010-04-18 Stas Boukarev stassats@gmail.com + + * slime.el (slime-threads-update-interval): Add :group and :type + parameters to this customization.
It appears that a spurious quote character has been added to the definition of the function `slime-compile-file'. In slime.el, revision 1.1303, line 2583:
:policy ,policy))))
was changed to:
:policy ',policy))))
Mark Harig idirectscm@aim.com writes:
Index: slime/ChangeLog diff -u slime/ChangeLog:1.2067 slime/ChangeLog:1.2069 --- slime/ChangeLog:1.2067 Sat Apr 17 14:10:20 2010 +++ slime/ChangeLog Sun Apr 18 20:42:28 2010 @@ -1,3 +1,19 @@
+2010-04-18 Stas Boukarev stassats@gmail.com
- slime.el (slime-threads-update-interval): Add :group and :type
- parameters to this customization.
It appears that a spurious quote character has been added to the definition of the function `slime-compile-file'. In slime.el, revision 1.1303, line 2583:
:policy ,policy))))
was changed to:
:policy ',policy))))
It wasn't spurious, I just forgot to document it.