[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- To: (BUG LISP) at MIT-MC
- From: KMP at MIT-MC (Kent M. Pitman)
- Date: Fri, 9 Mar 79 01:31:00 GMT
- Cc: JIS at MIT-MC
- Original-date: 8 MAR 1979 2031-EST
(MAPCAR 'QUOTE '(8 7 5))
returns an error
;((QUOTE . 8) ?) WRONG NUMBER OF ARGS TO FSUBR
This error seems to be the wrong one. ... Should be something
more to the effect that the arg format is wrong. .. i.e., it
was expecting (8) (7) (5) instead of 8 7 5 (FSUBR's take args
that are supposededly guaranteed lists.) It strikes me
that the proper semantics is for MAPCAR to (NCONS ..) each thing
being passed to an FSUBR ... hmmmm...
Also, (FUNCALL 'QUOTE 'A) gives back
#74012
with no error message. Could *RSET => T please check
for something in this line? Maybe for general format of
arg in a FUNCALL of an FSUBR/FEXPR...?