diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-01-24 22:48:37 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-01-24 22:48:37 -0800 |
commit | 8195fbed4a8067362656d38e56fec3c4eb3deef1 (patch) | |
tree | 4de31eaa6b74ec1a97a8c767a3d7b7d8e587b409 /arith.c | |
parent | 8e785a1f47e49a411abadc8b690b175ff0e231e6 (diff) | |
download | txr-8195fbed4a8067362656d38e56fec3c4eb3deef1.tar.gz txr-8195fbed4a8067362656d38e56fec3c4eb3deef1.tar.bz2 txr-8195fbed4a8067362656d38e56fec3c4eb3deef1.zip |
lib: revise wording of integer range errors.
* arith.c (c_unum): Fix misleading error message, and instead
specify the range that was violated.
* lib.c (c_num): Similar change: don't refer to a 'cnum range'
which means nothing to the user.
Diffstat (limited to 'arith.c')
-rw-r--r-- | arith.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -213,7 +213,8 @@ ucnum c_unum(val num) } /* fallthrough */ range: - uw_throwf(error_s, lit("~s given, non-negative expected"), num, nao); + uw_throwf(error_s, lit("~s is out of allowed range [0, ~a]"), + num, unum(UINT_PTR_MAX), nao); default: type_mismatch(lit("~s is not an integer"), num, nao); } |