[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

infix madness



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*)) .....))