2 errmax - return or set maximum error-count before execution stops
13 Without an argument, errmax() returns the current value of an
14 internal variable errmax. Calling errmax(num) returns this value
15 but then resets its value to num. Execution is aborted if
16 evaluation of an error value if this makes errcount > errmax.
17 An error message displays the errno for the error.
24 > a = 1/0; b = 2 + ""; c = error(27); d = newerror("alpha");
25 Error 27 caused errcount to exceed errmax
30 Here global variables c and d were created when compiling the line
31 but execution was aborted before the intended assignments to c and d.
40 errcount, error, strerror, iserror, errno, newerror, errorcodes