Consider this:
(defmacro foo (x) "docstring" `(,x))
If I press C-U M-q in the docstring it ends up looking like this:
(defmacro foo (x) "docstring" `(,x))
Strangely enough there is no problem with:
(defmacro foo (x) "docstring" (list x))
Cheers, Gábor
On Thu, 1 Feb 2007 09:33:55 +0100, Gábor Melis mega@retes.hu wrote:
Consider this:
(defmacro foo (x) "docstring" `(,x))
If I press C-U M-q in the docstring it ends up looking like this:
(defmacro foo (x) "docstring" `(,x))
Strangely enough there is no problem with:
(defmacro foo (x) "docstring" (list x))
I reported this quite some time ago, must be in the archives somewhere. AFAIR it's not a SLIME issue but an Emacs problem.