[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
infix madness
- To: common-lisp@SU-AI.ARPA
- Subject: infix madness
- From: "George J. Carrette" <GJC@MC.LCS.MIT.EDU>
- Date: Wed, 7 May 86 07:30:45 EDT
And if you really want to go for it I can supply a version of the Famous CGOL
lisp-front-end parser. It also defines a #$ readmacro, but likes to work
mostly by creating a readtable such that all non-whitespace characters
do an unread-char and then call CGOL-PARSE. CGOL source files then have
an (eval-when (eval compile) (setq *readtable* *cgol-readtable*)) in
the front, so that they really prefer that LOAD is defined as
(DEFUN LOAD (...) (LET ((*READTABLE* *READTABLE*)) .....))