Changeset 14588
- Timestamp:
- 11/24/13 21:00:55 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/Primitives.java
r14500 r14588 2044 2044 @Override 2045 2045 public LispObject execute(LispObject args, Environment env) 2046 2047 2046 { 2048 2047 final LispThread thread = LispThread.currentThread(); … … 2050 2049 while (args != NIL) { 2051 2050 LispObject clause = args.car(); 2051 if (! (clause instanceof Cons)) 2052 return error(new ProgramError("COND clause is not a non-empty list: " 2053 + clause.princToString())); 2052 2054 result = eval(clause.car(), env, thread); 2053 2055 thread._values = null;
Note: See TracChangeset
for help on using the changeset viewer.