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

compilation of BOUNDP



    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.