diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-02-18 17:43:56 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-02-18 17:43:56 -0800 |
commit | d14ddd48c53f3d9ec960782c75f657a627456d22 (patch) | |
tree | f966df8f17c1a532a41ffa7c749edb0fd95418f5 /ChangeLog | |
parent | 3b1e713d392d607a37e9f6d1520c4f9f584d014d (diff) | |
download | txr-d14ddd48c53f3d9ec960782c75f657a627456d22.tar.gz txr-d14ddd48c53f3d9ec960782c75f657a627456d22.tar.bz2 txr-d14ddd48c53f3d9ec960782c75f657a627456d22.zip |
Allow braced output variables to actually be arbitrary substitutions.
* eval.c (subst_vars): Treat the variable as an arbitrary
expression rather than just a symbol.
* match.c (subst_vars): Likewise.
* parser.y (o_var): Further simplification. The first item in
an output var is an expr and not an IDENT.
* txr.1: Updated.
* txr.vim: Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -1,5 +1,21 @@ 2012-02-18 Kaz Kylheku <kaz@kylheku.com> + Allow braced output variables to actually be arbitrary substitutions. + + * eval.c (subst_vars): Treat the variable as an arbitrary + expression rather than just a symbol. + + * match.c (subst_vars): Likewise. + + * parser.y (o_var): Further simplification. The first item in + an output var is an expr and not an IDENT. + + * txr.1: Updated. + + * txr.vim: Likewise. + +2012-02-18 Kaz Kylheku <kaz@kylheku.com> + * parser.y (o_var): Remove productions from grammar by using exprs_opt. 2012-02-17 Kaz Kylheku <kaz@kylheku.com> |