[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
LAST
- To: HIC at MIT-MC
- Subject: LAST
- From: RWK at MIT-MC (Robert W. Kerns)
- Date: Tue, 5 Sep 78 08:20:00 GMT
- Cc: (BUG LISP) at MIT-MC, CWH at MIT-MC
- Original-date: 5 SEP 1978 0420-EDT
Your comment would be almost valid, except that LAST obviously isn't
just CDR'ing down the list checking for NIL. It is doing a LIST-P
on the CDR instead. After all, this isn't very expensive, a MOVEI, a LSH,
and a SKIPL will do it. I would muchly appreciate it if APPEND would
be changed to do likewise. (There should also be a TYPEP before the loop,
so (LAST 3.3) wouldn't die). After all, the interpreter isn't supposed to
be fast, it's supposed to be suportive and not die on easy mistakes.