Changeset 4329
- Timestamp:
- 10/12/03 18:20:42 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Lisp.java
r4199 r4329 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Lisp.java,v 1.16 2 2003-10-05 15:09:01piso Exp $5 * $Id: Lisp.java,v 1.163 2003-10-12 18:20:42 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 80 80 // argv must not be null! 81 81 public static final LispObject funcall(LispObject fun, LispObject[] argv, 82 LispThread thread) throws ConditionThrowable 82 LispThread thread) 83 throws ConditionThrowable 83 84 { 84 85 if (fun instanceof Autoload) { … … 138 139 139 140 public static final LispObject funcall1(LispObject fun, LispObject arg, 140 LispThread thread) throws ConditionThrowable 141 LispThread thread) 142 throws ConditionThrowable 141 143 { 142 144 if (fun instanceof Autoload) { … … 161 163 162 164 public static final LispObject funcall2(LispObject fun, LispObject first, 163 LispObject second, LispThread thread) throws ConditionThrowable 165 LispObject second, LispThread thread) 166 throws ConditionThrowable 164 167 { 165 168 if (fun instanceof Autoload) { … … 185 188 186 189 public static final LispObject funcall3(LispObject fun, LispObject first, 187 LispObject second, LispObject third, LispThread thread) throws ConditionThrowable 190 LispObject second, LispObject third, 191 LispThread thread) 192 throws ConditionThrowable 188 193 { 189 194 if (fun instanceof Autoload) {
Note: See TracChangeset
for help on using the changeset viewer.