Changeset 12766


Ignore:
Timestamp:
06/25/10 20:44:23 (13 years ago)
Author:
ehuelsmann
Message:

Fix #101: Regression in 0.20 where dispatch macros return NIL.

File:
1 edited

Legend:

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

    r12749 r12766  
    524524        if (value == NIL) {
    525525            LispObject[] values = thread._values;
    526             if (values != null && values.length == 0)
     526            if (values != null && values.length == 0) {
    527527                value = null;
     528                thread._values = null; // reset 'no values' indicator
     529            }
    528530        }
    529531        return value;
Note: See TracChangeset for help on using the changeset viewer.