Changeset 3715
- Timestamp:
- 09/11/03 17:12:23 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Cons.java
r3701 r3715 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Cons.java,v 1.2 2 2003-09-11 16:04:09piso Exp $5 * $Id: Cons.java,v 1.23 2003-09-11 17:12:23 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 53 53 public LispObject typep(LispObject typeSpecifier) throws LispError 54 54 { 55 if (typeSpecifier instanceof Cons) 56 return CompoundTypeSpecifier.getInstance(typeSpecifier).test(this); 55 57 if (typeSpecifier == Symbol.LIST) 56 58 return T;
Note: See TracChangeset
for help on using the changeset viewer.