Changeset 4547
- Timestamp:
- 10/26/03 19:13:26 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Lisp.java
r4546 r4547 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Lisp.java,v 1.17 0 2003-10-26 18:55:35piso Exp $5 * $Id: Lisp.java,v 1.171 2003-10-26 19:13:26 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 353 353 } 354 354 if (result instanceof SymbolMacro) 355 return ((SymbolMacro)result).getExpansion();355 return eval(((SymbolMacro)result).getExpansion(), env, thread); 356 356 return result; 357 357 } else if (obj instanceof Cons) {
Note: See TracChangeset
for help on using the changeset viewer.