diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-01-22 06:06:26 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-01-22 06:06:26 -0800 |
commit | 1468f3fc7fba26345de8a67b66d4af5367c13037 (patch) | |
tree | 7589c62581f76757860272139c7424929d3dedf9 /parser.y | |
parent | 57adf83c524524ec8aaade817ce498fac1a4f519 (diff) | |
download | txr-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.y | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -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; |