Changeset 3772
- Timestamp:
- 09/14/03 17:03:03 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Lisp.java
r3768 r3772 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Lisp.java,v 1.1 29 2003-09-14 16:45:14piso Exp $5 * $Id: Lisp.java,v 1.130 2003-09-14 17:03:03 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 97 97 static final int TYPE_RATIONAL = TYPE_INTEGER | TYPE_RATIO; 98 98 static final int TYPE_REAL = TYPE_RATIONAL | TYPE_FLOAT; 99 100 static final int TYPE_LIST = TYPE_CONS | TYPE_NULL;101 static final int TYPE_SEQUENCE = TYPE_VECTOR | TYPE_LIST;102 99 103 100 // Functional types. … … 326 323 if (debug) 327 324 return funcall(fun, 328 evalList(obj.cdr(), env, thread), thread); 325 evalList(obj.cdr(), env, thread), 326 thread); 329 327 if (profiling) 330 328 fun.incrementCallCount();
Note: See TracChangeset
for help on using the changeset viewer.