summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-01-09 15:44:50 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-01-09 15:44:50 -0800
commit9fa74517eb0b8252e88f4c636e6e93bca0c9f0be (patch)
treea14a84ec104a7f625cc9a4c70f2894f8904f2643 /ChangeLog
parentd8df8beb2e00517a546d753586d67e14ffa4611d (diff)
downloadtxr-9fa74517eb0b8252e88f4c636e6e93bca0c9f0be.tar.gz
txr-9fa74517eb0b8252e88f4c636e6e93bca0c9f0be.tar.bz2
txr-9fa74517eb0b8252e88f4c636e6e93bca0c9f0be.zip
Non-broken way to achieve intent of previous commit.
* eval.c (subst_vars): Do not evaluate modifiers as an argument list locally. Pass form-evaluating function to format_field. * match.c (format_field): Modified to accept new argument, a one-argument function for reducing a form to a value. Error checking for invalid modifiers made stricter. (subst_vars): Do not evaluate modifiers as an argument list. Pass form-evaluating function to format_field. * match.h (format_field): Declaration updated.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6f87c46b..11db5c38 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,21 @@
2012-01-09 Kaz Kylheku <kaz@kylheku.com>
+ Non-broken way to achieve intent of previous commit.
+
+ * eval.c (subst_vars): Do not evaluate modifiers
+ as an argument list locally. Pass form-evaluating
+ function to format_field.
+
+ * match.c (format_field): Modified to accept new argument,
+ a one-argument function for reducing a form to a value.
+ Error checking for invalid modifiers made stricter.
+ (subst_vars): Do not evaluate modifiers as an argument
+ list. Pass form-evaluating function to format_field.
+
+ * match.h (format_field): Declaration updated.
+
+2012-01-09 Kaz Kylheku <kaz@kylheku.com>
+
* eval.c (subst_vars): Evaluate the
modifiers, so expressions can be used.