Changeset 3617
- Timestamp:
- 09/08/03 13:34:38 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Primitives.java
r3614 r3617 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Primitives.java,v 1.37 5 2003-09-08 12:38:05piso Exp $5 * $Id: Primitives.java,v 1.376 2003-09-08 13:34:38 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 1182 1182 if (datum == Symbol.TYPE_ERROR) 1183 1183 throw new TypeError(_format(args, 1)); 1184 if (datum == Symbol.PARSE_ERROR) 1185 throw new ParseError(_format(args, 1)); 1184 1186 if (datum == Symbol.PROGRAM_ERROR) 1185 1187 throw new ProgramError(_format(args, 1)); … … 1821 1823 if (type == Symbol.PACKAGE_ERROR) 1822 1824 return c instanceof PackageError; 1825 if (type == Symbol.PARSE_ERROR) 1826 return c instanceof ParseError; 1823 1827 if (type == Symbol.PROGRAM_ERROR) 1824 1828 return c instanceof ProgramError;
Note: See TracChangeset
for help on using the changeset viewer.