2009/9/21 十亀 眞怜 <poketo7878@...>:
> I use sbcl with slime on mac osx. And I setup ed function like this:
> (push #'swank:ed-in-emacs sb-ext:*ed-functions*)
> Then I try to use ed like this:
> (ed 'ed)
> Bug I got an error message.
This is because the interface of SWANK:ED-IN-EMACS is not what ED
expects: it returns NIL on success, and signals an error on failure.
(push (lambda (x) (swank:ed-in-emacs x) t) *ed-functions*)
does the right things. (ED-IN-EMACS used to return T on success, but
this seems to have changed.)
Cheers,
-- Nikodemus
|