[slime-cvs] CVS slime
mkoeppe
mkoeppe at common-lisp.net
Sat Aug 26 12:11:07 UTC 2006
Update of /project/slime/cvsroot/slime
In directory clnet:/tmp/cvs-serv3659
Modified Files:
slime.el
Log Message:
(slime-repl-return-behaviour): Fix the defcustom type, so Emacs 21.3
does not signal an error when creating a customization buffer
containing this variable.
--- /project/slime/cvsroot/slime/slime.el 2006/08/24 12:15:33 1.642
+++ /project/slime/cvsroot/slime/slime.el 2006/08/26 12:11:06 1.643
@@ -437,8 +437,8 @@
:send-only-if-after-complete - If the current expression is complete
and point is after the expression it is sent, otherwise a newline
is inserted."
- :type '(choice (const :send-if-complete)
- (const :send-only-if-after-complete))
+ :type '(choice (const :tag "Send if complete" :value :send-if-complete)
+ (const :tag "Send only if after complete" :value :send-only-if-after-complete))
:group 'slime-repl)
More information about the slime-cvs
mailing list