Changeset 4292
- Timestamp:
- 10/10/03 18:56:34 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/StandardClass.java
r4285 r4292 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: StandardClass.java,v 1. 8 2003-10-10 17:01:33piso Exp $5 * $Id: StandardClass.java,v 1.9 2003-10-10 18:56:34 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 103 103 if (arg instanceof StandardClass) 104 104 return ((StandardClass)arg).effectiveSlots; 105 if (arg == BuiltInClass.STANDARD_CLASS)106 return NIL; // FIXME105 if (arg instanceof BuiltInClass) 106 return NIL; 107 107 throw new ConditionThrowable(new TypeError(arg, "standard class")); 108 108 }
Note: See TracChangeset
for help on using the changeset viewer.