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

Re: defun&



I got the following message and thought I'd forward it to you.
It occured in a old COMPLR (633 by 632), but, who knows, maybe
this bug exists still.
--------------------------------------------------------------
  From Onr Project[1000,222] on June 19, 1979 at 8:13 AM
  Re: lisp compiler bug

    (cond ((null j) nil) ...)

  cause it to generate code as if

    (cond (j nil) ...)

  To fix it do the following:

    (cond ((null j) any-dummy-function-here) ...)

  				T. Wong (3 man-hours)
  [Forwarded from Tim Finin]
______________________________________________________________

Tim