Changeset 12849


Ignore:
Timestamp:
08/02/10 06:07:45 (13 years ago)
Author:
Mark Evenson
Message:

Narrow LISP-ERROR to STORAGE-CONDITION.

Now JRUN-EXCEPTION-PROTECTED behaves like INTERACTIVE-EVAL which
should be correct.

Include textual message about reason for STORAGE-CONDITION

Location:
trunk/abcl/src/org/armedbear/lisp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/Java.java

    r12826 r12849  
    12021202            }
    12031203            catch (OutOfMemoryError oom) {
    1204                 return error(new StorageCondition("Out of memory."));
     1204                return error(new StorageCondition("Out of memory " + oom.getMessage()));
    12051205            }
    12061206            catch (StackOverflowError oos) {
  • trunk/abcl/src/org/armedbear/lisp/Lisp.java

    r12826 r12849  
    278278        catch (OutOfMemoryError e)
    279279          {
    280             return error(new LispError("Out of memory."));
     280            return error(new StorageCondition("Out of memory " + e.getMessage()));
    281281          }
    282282        catch (StackOverflowError e)
Note: See TracChangeset for help on using the changeset viewer.