# HG changeset patch # User John W. Eaton # Date 1234985573 18000 # Node ID 401d54a836905dc39c34c28ce8ab164f0ceea02e # Parent c7864bb7491429c30ca5447cad00d2d3c7fda42c use 'invalid', not 'illegal' diff -r c7864bb74914 -r 401d54a83690 liboctave/LSODE.cc --- a/liboctave/LSODE.cc Wed Feb 18 13:45:20 2009 -0500 +++ b/liboctave/LSODE.cc Wed Feb 18 14:32:53 2009 -0500 @@ -285,7 +285,7 @@ case -1: // excess work done on this call (perhaps wrong mf). case -2: // excess accuracy requested (tolerances too small). - case -3: // illegal input detected (see printed message). + case -3: // invalid input detected (see printed message). case -4: // repeated error test failures (check all inputs). case -5: // repeated convergence failures (perhaps bad jacobian // supplied or wrong choice of mf or tolerances). diff -r c7864bb74914 -r 401d54a83690 src/DLD-FUNCTIONS/hex2num.cc --- a/src/DLD-FUNCTIONS/hex2num.cc Wed Feb 18 13:45:20 2009 -0500 +++ b/src/DLD-FUNCTIONS/hex2num.cc Wed Feb 18 14:32:53 2009 -0500 @@ -85,7 +85,7 @@ } else { - error ("hex2num: illegal character found in string"); + error ("hex2num: invalid character found in string"); break; } }