Changeset 12929


Ignore:
Timestamp:
09/29/10 21:43:56 (13 years ago)
Author:
ehuelsmann
Message:

Don't trap floating point underflows: Raymond Toy explains how
most CL implementations don't signal errors in this case anyway;
this fixes tests in Maxima.

File:
1 edited

Legend:

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

    r12849 r12929  
    27052705  // Floating point traps.
    27062706  protected static boolean TRAP_OVERFLOW  = true;
    2707   protected static boolean TRAP_UNDERFLOW = true;
     2707  protected static boolean TRAP_UNDERFLOW = false;
    27082708
    27092709
Note: See TracChangeset for help on using the changeset viewer.