[Bese-devel] Now a problem of a different sort - solved

William Halliburton whalliburton at gmail.com
Sun Aug 7 04:13:46 UTC 2005


Looks like the walker was setting up free-function-object-form name to
be (setf foo) and this was dying on the symbol-function. Replacing
symbol-function with fdefinition fixes the problem.

(defmethod evaluate/cps ((func free-function-object-form) env k)
  (declare (ignore env))
  (if (fboundp (name func))
      (kontinue k (fdefinition (name func)))
    (error "Unbound function ~S." (name func))))

What is the proper way to submit bug fixes? I am new to darcs but have
used cvs for a long time.

Thanks,
Will



More information about the bese-devel mailing list