summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-02-18 17:43:56 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-02-18 17:43:56 -0800
commitd14ddd48c53f3d9ec960782c75f657a627456d22 (patch)
treef966df8f17c1a532a41ffa7c749edb0fd95418f5 /ChangeLog
parent3b1e713d392d607a37e9f6d1520c4f9f584d014d (diff)
downloadtxr-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--ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f132e31b..15148d4d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>