Dear Slimers,
the following patch fixes the custom type of the variable slime-filename-translations.
Happy not-on-holday-anymore !
ChangeLog addition:
2007-09-03 Didier Verna didier@xemacs.org
* slime.el (slime-filename-translations): Fix custom type.
slime source patch: Diff command: cvs -q diff -u Files affected: slime.el
Index: slime.el =================================================================== RCS file: /project/slime/cvsroot/slime/slime.el,v retrieving revision 1.841 diff -u -u -r1.841 slime.el --- slime.el 31 Aug 2007 13:10:47 -0000 1.841 +++ slime.el 3 Sep 2007 14:27:14 -0000 @@ -209,7 +209,10 @@ slime-filename-translations)
See also `slime-create-filename-translator'." - :type 'list + :type '(repeat (list :tag "Host description" + (regexp :tag "Hostname regexp") + (function :tag "To lisp function") + (function :tag "From lisp function"))) :group 'slime-lisp)
(defcustom slime-enable-evaluate-in-emacs nil