[slime-devel] process filter bug

I am using xemacs and slime FAIRLY-STABLE version from cvs. At times when I execute some code on the *slime-repl*. It gives me the following error in the Xemacs *Warnings* buffer. (4) (error/warning) Error in process filter: (wrong-number-of-arguments nil 3) The *sldb [clisp/0]* is blank and hangs till i kill it by pressing q. -- Surendra Singhi www.public.asu.edu/~sksinghi

Surendra Singhi wrote:
I am using xemacs and slime FAIRLY-STABLE version from cvs. At times when I execute some code on the *slime-repl*. It gives me the following error in the Xemacs *Warnings* buffer.
(4) (error/warning) Error in process filter: (wrong-number-of-arguments nil 3)
The *sldb [clisp/0]* is blank and hangs till i kill it by pressing q.
There was some error in my code, and sldb instead of showing me the clisp frames shows the above error message. Hope this will help. Thanks. -- Surendra Singhi www.public.asu.edu/~sksinghi

Surendra Singhi wrote:
Surendra Singhi wrote:
I am using xemacs and slime FAIRLY-STABLE version from cvs. At times when I execute some code on the *slime-repl*. It gives me the following error in the Xemacs *Warnings* buffer.
(4) (error/warning) Error in process filter: (wrong-number-of-arguments nil 3)
The *sldb [clisp/0]* is blank and hangs till i kill it by pressing q.
There was some error in my code, and sldb instead of showing me the clisp frames shows the above error message. Hope this will help.
Thanks.
When I use debug on error feature this is a part of the trace which I get. Signaling: (wrong-number-of-arguments nil 3) signal(wrong-number-of-arguments (nil 3)) (if (= (length --rest--81828) 4) (pop --rest--81828) (signal (quote wrong-number-of-arguments) (list nil ...))) (let* ((--rest--81828 condition) (message ...) (type ...) (references ...) (extras ...)) (slime-insert-propertized (quote ...) (in-sldb-face topline message) "\n" (in-sldb-face condition type) "\n\n") (when references (insert "See also:\n") (slime-with-rigid-indentation 2 ...) (insert "\n")) (sldb-dispatch-extras extras)) (progn (let* (... ... ... ... ...) (slime-insert-propertized ... ... "\n" ... "\n\n") (when references ... ... ...) (sldb-dispatch-extras extras))) (destructuring-bind (message type references extras) condition (slime-insert-propertized (quote ...) (in-sldb-face topline message) "\n" (in-sldb-face condition type) "\n\n") (when references (insert "See also:\n") (slime-with-rigid-indentation 2 ...) (insert "\n")) (sldb-dispatch-extras extras)) sldb-insert-condition(("EVAL: variable *INFINITY* has no value" " [Condition of type SYSTEM::SIMPLE-UNBOUND-VARIABLE]" nil)) -- Surendra Singhi www.public.asu.edu/~sksinghi
participants (1)
-
Surendra Singhi