[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Fun with Setsyntax
- To: (BUG LISP) at MIT-MC
- Subject: Fun with Setsyntax
- From: KMP at MIT-MC (Kent M. Pitman)
- Date: Thu, 13 Jul 78 15:04:00 GMT
- Cc: RWK at MIT-MC, KMP at MIT-MC
- Original-date: 13 JUL 1978 1104-EDT
If you do (SETSYNTAX 13. 32. 13.) and then do
(
)
It will say
;BLAST, MISSING ")"
This is a minimal case. You can experiment yourself. Another fun thing
to do is
(SETQ A '((FOO
)))
You have to have the space on the 2nd line if I remember right so that you
don't get the ;BLAST, MISSING ")" error, and it will give you back
((FOO
))
as a result (no vertical bars!!) ... Bob looked up the printname of it
and it is a list ( ( FOO^M . NIL ) . NIL) ...