Changeset 4004
- Timestamp:
- 09/22/03 17:21:41 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Primitives.java
r3992 r4004 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Primitives.java,v 1.42 3 2003-09-22 12:22:25piso Exp $5 * $Id: Primitives.java,v 1.424 2003-09-22 17:21:41 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 801 801 802 802 // ### append 803 p rivatestatic final Primitive APPEND = new Primitive("append") {803 public static final Primitive APPEND = new Primitive("append") { 804 804 public LispObject execute() 805 805 { … … 1148 1148 throw new ConditionThrowable(new WrongNumberOfArgumentsException(this)); 1149 1149 LispObject datum = args[0]; 1150 if (datum instanceof LispError) 1151 throw new ConditionThrowable((LispError)datum); 1150 1152 if (datum instanceof Symbol) { 1151 1153 if (datum == Symbol.PACKAGE_ERROR) … … 2263 2265 2264 2266 // ### apply 2265 p rivatestatic final Primitive APPLY = new Primitive("apply") {2267 public static final Primitive APPLY = new Primitive("apply") { 2266 2268 public LispObject execute(LispObject first, LispObject second) 2267 2269 throws ConditionThrowable
Note: See TracChangeset
for help on using the changeset viewer.