This is the mail archive of the kawa@sourceware.org mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: GSOC | Extending Common Lisp support


Not sure if this is related, but I'm currently having fun trying to
figure out the following behaviour for my FLET:

(defun dummy-function () 'top-level)
(flet ((dummy-function () 'shadow))
  (dummy-function)) ;=> 'shadow
(flet ((dummy-function () 'shadow))
  (funcall #'dummy-function)) ;=> 'top-level

Seems to be a function namespace problem.

Charles.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]