[EMAIL PROTECTED] writes: > * (intern "foo") > > |foo|
CMUCL's top level loop prints results with PRIN1, which binds *PRINT-ESCAPE* to true, thus overriding your SETQ. To print the symbol without escaping, call WRITE, PRINC or FORMAT yourself; do not rely on the top level loop.
