Changeset 4317
- Timestamp:
- 10/11/03 20:40:25 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/StandardObject.java
r4314 r4317 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: StandardObject.java,v 1. 5 2003-10-11 19:44:29piso Exp $5 * $Id: StandardObject.java,v 1.6 2003-10-11 20:40:25 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 59 59 if (type == cls.getSymbol()) 60 60 return T; 61 LispObject cpl = cls.getCPL(); 62 while (cpl != NIL) { 63 if (type == cpl.car()) 64 return T; 65 if (type == ((LispClass)cpl.car()).getSymbol()) 66 return T; 67 cpl = cpl.cdr(); 68 } 61 69 } 62 70 return super.typep(type);
Note: See TracChangeset
for help on using the changeset viewer.