summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-03-11 20:10:40 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-03-11 20:10:40 -0700
commit1fb002a4fd466e2384d12b80176a1bf526d0ce5f (patch)
tree56f1bf0ccbcdc392b11ddfc91eb4ec694698247d /ChangeLog
parent23a2f7ca3b960cb563e5003fae88eda7278a0021 (diff)
downloadtxr-1fb002a4fd466e2384d12b80176a1bf526d0ce5f.tar.gz
txr-1fb002a4fd466e2384d12b80176a1bf526d0ce5f.tar.bz2
txr-1fb002a4fd466e2384d12b80176a1bf526d0ce5f.zip
* eval.c (eval_init): Registration of url_encode and url_decode
moved to filter.c. * filter.c (trie_compress_intrinsic, html_encode, html_decode): New static functions. (filter_init): Register make_trie, trie_add, trie_compress_intrinsic, filter_string_tree, filter_equal, html_encode and html_decode as intrinsics. Move registration of url_encode and url_decode here. * genvim.txr: Look for registrations in filter.c too. * txr.1: Documented. * txr.vim: Updated.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog17
1 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b392409d..ceb25b20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,22 @@
2014-03-11 Kaz Kylheku <kaz@kylheku.com>
+ * eval.c (eval_init): Registration of url_encode and url_decode
+ moved to filter.c.
+
+ * filter.c (trie_compress_intrinsic, html_encode, html_decode): New
+ static functions.
+ (filter_init): Register make_trie, trie_add, trie_compress_intrinsic,
+ filter_string_tree, filter_equal, html_encode and html_decode
+ as intrinsics. Move registration of url_encode and url_decode here.
+
+ * genvim.txr: Look for registrations in filter.c too.
+
+ * txr.1: Documented.
+
+ * txr.vim: Updated.
+
+2014-03-11 Kaz Kylheku <kaz@kylheku.com>
+
* stream.c (open_process): Close the original pipe file descriptor
in the child process after dup2-ing it to standard input or standard
output, so the child doesn't have to references to the pipe.