[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
compilation of BOUNDP
- To: JOHAN at MIT-MC
- Subject: compilation of BOUNDP
- From: JONL at MIT-MC (Jon L White)
- Date: Sun, 30 Dec 79 00:03:00 GMT
- Cc: (BUG LISP) at MIT-MC
- Original-date: 29 DEC 1979 1903-EST
Date: 29 December 1979 18:17-EST
From: Johan de Kleer <JOHAN at MIT-MC>
I believe that MC;CBUG > compiles incorrectly. Specifically
the "(BOUNDP FILE-FORK)" where FILE-FORK is an argument gets
compiled into:
HLRZ 1,@- 6(14)
HRRZ 1,0(1)
HRRZ 1,0(1)
CAIN 1,QUNBOU
No, this is indeed correct. But your source code,
(and file-fork (boundp file-fork))
is incorrect, and should be
(and (boundp file-fork) file-fork)
I hope that is the only problem.