summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-10-22 16:18:11 -0400
committerKaz Kylheku <kaz@kylheku.com>2011-10-22 16:18:11 -0400
commit6ddb4b8f329b14e6133f29573cfeb88d1ee30846 (patch)
tree3aa77c66532cf7aaaaf8aa7e9b05d9a634dfd2a7 /ChangeLog
parent70a3b3ae47671a8a73ac517cd7c3f6a4bce782e5 (diff)
downloadtxr-6ddb4b8f329b14e6133f29573cfeb88d1ee30846.tar.gz
txr-6ddb4b8f329b14e6133f29573cfeb88d1ee30846.tar.bz2
txr-6ddb4b8f329b14e6133f29573cfeb88d1ee30846.zip
* filter.c (get_filter_trie): Function renamed to get_filter. A filter
is not necessarily a trie. (string_filter, compound_filter): New functions. (get_filter): Recognize a compound filters and return a function which implements it. * filter.h (get_filter_trie): Declaration renamed. * match.c (format_field, v_bind, v_output): Follow get_filter_trie rename. Error message text updated. * txr.1: Describe compound filters.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 67e0a93a..5ce31148 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,20 @@
2011-10-22 Kaz Kylheku <kaz@kylheku.com>
+ * filter.c (get_filter_trie): Function renamed to get_filter. A filter
+ is not necessarily a trie.
+ (string_filter, compound_filter): New functions.
+ (get_filter): Recognize a compound filters and return a function
+ which implements it.
+
+ * filter.h (get_filter_trie): Declaration renamed.
+
+ * match.c (format_field, v_bind, v_output): Follow get_filter_trie
+ rename. Error message text updated.
+
+ * txr.1: Describe compound filters.
+
+2011-10-22 Kaz Kylheku <kaz@kylheku.com>
+
Task #11474
* filter.c (filter_equal): New function.