Changeset 13399


Ignore:
Timestamp:
07/13/11 15:31:18 (12 years ago)
Author:
ehuelsmann
Message:

Fix #154: Don't call higher level abstractions from low level lisp routines.

File:
1 edited

Legend:

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

    r12576 r13399  
    209209    if (currentLevel >= maxLevel)
    210210      return "#";
    211     if (typep(Symbol.CONDITION) != NIL)
    212       {
    213         StringOutputStream stream = new StringOutputStream();
    214         Symbol.PRINT_OBJECT.execute(this, stream);
    215         return stream.getString().getStringValue();
    216       }
    217211    return unreadableString(typeOf().writeToString());
    218212  }
Note: See TracChangeset for help on using the changeset viewer.