summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-01-26 14:15:53 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-01-26 14:15:53 -0800
commita2b16d316cf9201fa27d35766f5f245c2c9a6b26 (patch)
treeca0187364399db8811ab2a595f82b13dd55ed08a /ChangeLog
parentb58791b726228b97297cc4512476f6016b9346a2 (diff)
downloadtxr-a2b16d316cf9201fa27d35766f5f245c2c9a6b26.tar.gz
txr-a2b16d316cf9201fa27d35766f5f245c2c9a6b26.tar.bz2
txr-a2b16d316cf9201fa27d35766f5f245c2c9a6b26.zip
* match.c (format_field): Removed useless use of cat_str (no longer
needed because str is already a string). The purpose was to reduce character to strings. (subst_vars): Some of the new logic in format_field must be replicated in the case when format_field is not called because the variable has no modifiers. Lists must be converted to a space-separated string. Bugfix here: occurence of pat and modifiers is not mutually exclusive.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ee0d422e..fc73e42d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2012-01-26 Kaz Kylheku <kaz@kylheku.com>
+ * match.c (format_field): Removed useless use of cat_str (no longer
+ needed because str is already a string). The purpose was to reduce
+ character to strings.
+ (subst_vars): Some of the new logic in format_field must be replicated
+ in the case when format_field is not called because the variable
+ has no modifiers. Lists must be converted to a space-separated string.
+ Bugfix here: occurence of pat and modifiers is not mutually exclusive.
+
+2012-01-26 Kaz Kylheku <kaz@kylheku.com>
+
* eval.c (dwim_loc, dwim_op): Eliminated redundant re-evaluation
of range arguments. They are already evaluated since the cons
expression is evaluates as part of the dwim arglist.