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

[no subject]



(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...?