summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-09-10 19:06:58 -0700
committerKaz Kylheku <kaz@kylheku.com>2019-09-10 19:06:58 -0700
commit595c0bee41e0c7286c9779ab8f08ca6ec140c8d7 (patch)
treea9b82c42e45f50a259e339aea9f597391d10dce1 /lib.c
parentb23424f8d0b093b3438e9c6a2665a543decd7355 (diff)
downloadtxr-595c0bee41e0c7286c9779ab8f08ca6ec140c8d7.tar.gz
txr-595c0bee41e0c7286c9779ab8f08ca6ec140c8d7.tar.bz2
txr-595c0bee41e0c7286c9779ab8f08ca6ec140c8d7.zip
bracket: bug: wrong result when function is applied.
Reported by user vapnik spaknik. * lib.c (bracket): Don't rely on the index variable to step through the arguments, because it only counts fixed arguments. The args_get function doesn't increment the index beyond args->fill; when popping arguments from args->list, index stays unmodified. * tests/016/arith.tl: Tests for bracket added.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib.c b/lib.c
index c76c4864..3b2aa4af 100644
--- a/lib.c
+++ b/lib.c
@@ -3341,15 +3341,15 @@ val clamp(val low, val high, val num)
val bracket(val larg, struct args *args)
{
- cnum index = 0;
+ cnum index = 0, i = 0;
- while (args_more(args, index)) {
+ for (; args_more(args, index); i++) {
val rarg = args_get(args, &index);
if (less(larg, rarg))
- return num(index - 1);
+ return num(i);
}
- return num(index);
+ return num(i);
}
val string_own(wchar_t *str)