summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-01-22 06:06:26 -0800
committerKaz Kylheku <kaz@kylheku.com>2017-01-22 06:06:26 -0800
commit1468f3fc7fba26345de8a67b66d4af5367c13037 (patch)
tree7589c62581f76757860272139c7424929d3dedf9 /parser.y
parent57adf83c524524ec8aaade817ce498fac1a4f519 (diff)
downloadtxr-1468f3fc7fba26345de8a67b66d4af5367c13037.tar.gz
txr-1468f3fc7fba26345de8a67b66d4af5367c13037.tar.bz2
txr-1468f3fc7fba26345de8a67b66d4af5367c13037.zip
Improve accuracy of expansion of repeat/rep args.
* parser.y (expand_repeat_rep_args): Correctly handle situation when :counter or :vars appears as an argument to another keyword. (A warning might be generated here, since this situation is wrong.)
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y18
1 files changed, 10 insertions, 8 deletions
diff --git a/parser.y b/parser.y
index e1392878..9fbdbf99 100644
--- a/parser.y
+++ b/parser.y
@@ -1290,14 +1290,16 @@ static val expand_repeat_rep_args(val args)
} else {
ptail = list_collect(ptail, arg);
}
- } else if (arg == counter_k) {
- exp_pair = t;
- ptail = list_collect(ptail, arg);
- continue;
- } else if (arg == vars_k) {
- exp_pairs = t;
- ptail = list_collect(ptail, arg);
- continue;
+ } else if (!exp_pair && !exp_pairs) {
+ if (arg == counter_k) {
+ exp_pair = t;
+ ptail = list_collect(ptail, arg);
+ continue;
+ } else if (arg == vars_k) {
+ exp_pairs = t;
+ ptail = list_collect(ptail, arg);
+ continue;
+ }
}
exp_pair = exp_pairs = nil;