Changeset 8385
- Timestamp:
- 01/22/05 17:18:20 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Lisp.java
r8381 r8385 3 3 * 4 4 * Copyright (C) 2002-2005 Peter Graves 5 * $Id: Lisp.java,v 1.31 2 2005-01-22 11:39:44 pisoExp $5 * $Id: Lisp.java,v 1.313 2005-01-22 17:18:20 asimon Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 268 268 }; 269 269 270 public static final LispObject signal(Condition condition) 271 throws ConditionThrowable 272 { 273 return Symbol.SIGNAL.getSymbolFunction().execute(condition); 274 } 275 276 public static final LispObject signal(Symbol condition) 277 throws ConditionThrowable 278 { 279 return Packages.findPackage("SYSTEM").findSymbol("SIGNAL").getSymbolFunction().execute(condition); 280 } 281 270 public static final LispObject signal(LispObject condition) 271 throws ConditionThrowable 272 { 273 return Symbol.SIGNAL.execute(condition); 274 } 282 275 283 276 protected static volatile boolean interrupted;
Note: See TracChangeset
for help on using the changeset viewer.