diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-01-25 22:26:22 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-01-25 22:26:22 -0800 |
commit | ff58e8a616d7d9b9d57fa26cec86778b3e30c2d9 (patch) | |
tree | b8159652f5e8807b19681e2e3a07cd419a74558e /arith.c | |
parent | 807e57014e153e9c8df24ef1515dded78b5fa068 (diff) | |
download | txr-ff58e8a616d7d9b9d57fa26cec86778b3e30c2d9.tar.gz txr-ff58e8a616d7d9b9d57fa26cec86778b3e30c2d9.tar.bz2 txr-ff58e8a616d7d9b9d57fa26cec86778b3e30c2d9.zip |
* arith.c (zerop): Misspelling in error message.
* lib.c (sub_list, replace_list, sub_vec, replace_vec):
Allow the value t to specify one element past the end, so that t t
refers to zero-length sequence just past the end of the array or list.
Also, fixed out of bounds memmoves in replace_vec.
Diffstat (limited to 'arith.c')
-rw-r--r-- | arith.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -743,7 +743,7 @@ val zerop(val num) return t; if (!fixnump(num) && !bignump(num)) - uw_throwf(error_s, lit("zerof: ~s is not a number"), num, nao); + uw_throwf(error_s, lit("zerop: ~s is not a number"), num, nao); return nil; } |