Index: head/lang/gnu-apl/files/patch-src_NumericCell.cc =================================================================== --- head/lang/gnu-apl/files/patch-src_NumericCell.cc (nonexistent) +++ head/lang/gnu-apl/files/patch-src_NumericCell.cc (revision 528526) @@ -0,0 +1,16 @@ +--- src/NumericCell.cc.orig 2019-06-23 12:39:20 UTC ++++ src/NumericCell.cc +@@ -1402,8 +1402,11 @@ NumericCell::bif_binomial(Cell * Z, const Cell * A) co + + if (!A->is_near_int()) return E_DOMAIN_ERROR; + if (!is_near_int()) return E_DOMAIN_ERROR; +- if (is_float_cell() && 0x7FFFFFFFFFFFFFFFLL < get_real_value()) +- return E_DOMAIN_ERROR; ++ if (is_float_cell()) ++ { ++ if (get_real_value() > 9223372036854775800.0) return E_DOMAIN_ERROR; ++ if (get_real_value() < -9223372036854775800.0) return E_DOMAIN_ERROR; ++ } + + const APL_Integer a = A->get_checked_near_int(); + const APL_Integer b = get_checked_near_int(); Property changes on: head/lang/gnu-apl/files/patch-src_NumericCell.cc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property