diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-02-06 07:13:24 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-02-06 07:13:24 -0800 |
commit | 3b7f7ef0422537391879d356e61baa50f74483a1 (patch) | |
tree | 48d555cdb70a6c7992f1401588ff2c0d292c9204 /eval.c | |
parent | ee21c61785cead30fb0f1cde1f6fd9900e358268 (diff) | |
download | txr-3b7f7ef0422537391879d356e61baa50f74483a1.tar.gz txr-3b7f7ef0422537391879d356e61baa50f74483a1.tar.bz2 txr-3b7f7ef0422537391879d356e61baa50f74483a1.zip |
Serious bugfix in the op macro, and derived macro, in
the handling of missing meta-numbers (for
instance (op ... @1 .. @3): 1 and 3 occur, but not 2.
* eval.c (supplement_op_syms): Bugfix: loop was testing
and updating the wrong variable, causing it to be looking at the first
element of the syms list in every iteration.
Not a regression: this was implemented wrong when the function
was introduced on October 6, 2013.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -2542,9 +2542,7 @@ static val supplement_op_syms(val ssyms, val max) list_collect_decl (outsyms, tl); val si, ni; - for (si = ssyms, ni = one; - ssyms; - ni = plus(ni, one), ssyms = cdr(ssyms)) + for (si = ssyms, ni = one; si; ni = plus(ni, one), si = cdr(si)) { val entry = car(si); val num = car(entry); |