Mark Harig idirectscm@aim.com writes:
Index: slime/ChangeLog diff -u slime/ChangeLog:1.2066 slime/ChangeLog:1.2067 --- slime/ChangeLog:1.2066 Thu Apr 15 14:01:13 2010 +++ slime/ChangeLog Sat Apr 17 14:10:20 2010 @@ -1,3 +1,16 @@ +2010-04-17 Stas Boukarev stassats@gmail.com
- slime.el (slime-threads-update-interval): New customization
- variable, if set to a number the threads buffer will
- updated with this interval.
- Because no :group keyword value was specified, the value for the 'Groups'
field in the *Customize* buffer is 'Slime Debugger'. This default could be changed by specifying 'slime-ui for the :group keyword value in the definition of `slime-threads-update-interval'.
Oh, I left it to figure out what section I need later and forgot about it. Thanks!
- If a :type keyword value of 'integer is specified in the definition
of `slime-threads-update-interval', then the *Customize* buffer will prevent the setting of the variable's value to a non-integer. This would need to be combined with setting the default value for the variable to zero instead of nil, and with a change to the code that uses the variable, in the function `slime-list-threads'.
I changed type to (choice (number :value 0.5) (const nil))
number, because it takes not only integers.
P.S. Could you send unified diffs (-u option), it's much easier to read.