Mockmma, why Set fails.



Richard Fateman wrote:

Here's the fix:  in the file parser.lisp, replace  line 824 which now says

      (t`(Set ,temp ,(parse-set end)))))
with this
      (t`(|Set| ,temp ,(parse-set end)))))

For the people munging the code, note that for Allegro CL, you can write 
|Set|
and it means exactly the same thing as Set. I would expect this to be 
the case
for any other Lisp that has adopted the "CL Modern" mode of Allegro.

Thus the source code

#-(or gcl clisp) Equal
#+(or gcl clisp) |Equal|

can be replaced with just

|Equal|

RJF