[slime-devel] can't change *readtable* from repl

Helmut Eller e9626484 at stud3.tuwien.ac.at
Thu Mar 25 07:03:09 UTC 2004


Alan Ruttenberg <alanralanr at comcast.net> writes:

> Noticed this because cl-interpol enabling function stopped working at
> some point.

This might be a threading issue.  Each request, each expression typed
into the repl, is evaluated in a new thread.  But it seems to work in
Allegro:

CL-USER> *readtable*
#<readtable @ #x2000c902>
CL-USER> (copy-readtable)
#<readtable @ #x20553ff2>
CL-USER> (setq *readtable* *)
#<readtable @ #x20553ff2>
CL-USER> *readtable*
#<readtable @ #x20553ff2>
CL-USER> 

Does OpenMCL something special with *readtable*?




More information about the slime-devel mailing list