Changeset 12286
- Timestamp:
- 11/29/09 19:48:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/LispObject.java
r12285 r12286 131 131 if (this instanceof Cons) { 132 132 return ((Cons)this).car; 133 } else if (this == NIL) {133 } else if (this instanceof Nil) { 134 134 return NIL; 135 135 }
Note: See TracChangeset
for help on using the changeset viewer.