From ... Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!uio.no!nntp.uio.no!ifi.uio.no!not-for-mail From: Erik Naggum Newsgroups: comp.lang.lisp Subject: Re: Half of *PRINT-ESCAPE* Date: 14 Jan 2003 20:00:32 +0000 Organization: Naggum Software, Oslo, Norway Lines: 20 Message-ID: <3251563232194534@naggum.no> References: Reply-To: http://naggum.no/erik/contact.html Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: maud.ifi.uio.no 1042574433 22050 129.240.65.207 (14 Jan 2003 20:00:33 GMT) X-Complaints-To: abuse@ifi.uio.no NNTP-Posting-Date: 14 Jan 2003 20:00:33 GMT Mail-Copies-To: never User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.lisp:50503 * Simon Katz | I want to get half the effect of binding *PRINT-ESCAPE* to False. | When *PRINT-ESCAPE* is False, neither escape characters nor package | prefixes are output when an expression is printed. But is there a | way to have package prefixes printed (when necessary) and escape | characters not printed? Which escape characters do you not want to see printed? Going on a hunch here that you have mixed-case symbol names, perhaps your problem is solved by tweaking the `readtable-caseĀ“, instead? (setf *readtable* (copy-readtable)) (setf (readtable-case *readtable*) :preserve) -- Erik Naggum, Oslo, Norway Act from reason, and failure makes you rethink and study harder. Act from faith, and failure makes you blame someone and push harder.