summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-01-25 22:26:22 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-01-25 22:26:22 -0800
commitff58e8a616d7d9b9d57fa26cec86778b3e30c2d9 (patch)
treeb8159652f5e8807b19681e2e3a07cd419a74558e /arith.c
parent807e57014e153e9c8df24ef1515dded78b5fa068 (diff)
downloadtxr-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arith.c b/arith.c
index 6f19a63e..d736e925 100644
--- a/arith.c
+++ b/arith.c
@@ -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;
}