[slime-devel] fix for the autodoc & typeout error for functions containing #\% in the name.

Evrim Ulu evrim at core.gen.tr
Mon Jun 18 12:35:25 EDT 2007


Hi,

I've been using slime and the autodoc feature fails to execute for fun's
having #\% char in the name. That's due to elisp's format string.

I'm attaching the slime.el diff. Actually this patch is nothing more
than a hack, i've catched the error condition and made it work until
somebody pushes a real fix.

evrim.

-------------- next part --------------
Index: slime.el
===================================================================
RCS file: /project/slime/cvsroot/slime/slime.el,v
retrieving revision 1.728
diff -r1.728 slime.el
5944c5944,5946
<     (insert (apply #'format format-string format-args))))
---
>     (insert (condition-case err
>                 (apply #'format format-string format-args)
>               (error (format "%s" format-string))))))


More information about the slime-devel mailing list