James Wright james@chumsley.org writes:
Hi everyone,
I've noticed a couple of bugs in the most recent version of slime:
- If I type #\Sp<Tab> in the REPL, I get the message "string=:
Symbol's function definition is void: dbgmsg". The following change in `slime-contextual-completions' seems to fix it:
diff -r1.11 slime-c-p-c.el 131c131
< (string= (dbgmsg (subseq token 0 2)) "#\"))
(string= (subseq token 0 2) "#\\"))
My bad again.