Changeset 4332


Ignore:
Timestamp:
10/12/03 18:22:32 (20 years ago)
Author:
piso
Message:

FUNCTION: recognize generic functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/lisp/SpecialOperators.java

    r4171 r4332  
    33 *
    44 * Copyright (C) 2003 Peter Graves
    5  * $Id: SpecialOperators.java,v 1.4 2003-10-02 00:23:21 piso Exp $
     5 * $Id: SpecialOperators.java,v 1.5 2003-10-12 18:22:32 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    268268                if (functional instanceof Function)
    269269                    return functional;
     270                if (functional instanceof GenericFunction)
     271                    return functional;
    270272                throw new ConditionThrowable(new UndefinedFunction(arg));
    271273            }
Note: See TracChangeset for help on using the changeset viewer.