Changeset 13045


Ignore:
Timestamp:
11/23/10 20:02:06 (14 years ago)
Author:
astalla
Message:

Fix the macroexpansion of DEFUN in compiled files to return the function name instead of the function object. Completes the change introduced with r13032.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/abcl/src/org/armedbear/lisp/precompiler.lisp ΒΆ

    r13032 r13045  
    11601160                  ;; This function is also triggered by MACROEXPAND, though
    11611161                  jvm::*file-compilation*)
    1162              `(fset ',name ,lambda-expression))
     1162             `(progn
     1163                (fset ',name ,lambda-expression)
     1164                ',name))
    11631165            (t
    11641166             (when (and env (empty-environment-p env))
Note: See TracChangeset for help on using the changeset viewer.