Changeset 12324


Ignore:
Timestamp:
01/01/10 19:42:33 (14 years ago)
Author:
ehuelsmann
Message:

In case a redefinition warning shouldn't be issued

if the function slot is tied to an Autoload object,
neither should it in case of AutoloadedFunctionProxy?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/Primitives.java

    r12290 r12324  
    16251625          {
    16261626            LispObject oldDefinition = arg.getSymbolFunction();
    1627             if (oldDefinition != null && !(oldDefinition instanceof Autoload))
     1627            if (oldDefinition != null
     1628                && !(oldDefinition instanceof Autoload)
     1629                && !(oldDefinition instanceof AutoloadedFunctionProxy))
    16281630              {
    16291631                LispObject oldSource =
Note: See TracChangeset for help on using the changeset viewer.