summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-09-26 23:37:32 -0700
committerKaz Kylheku <kaz@kylheku.com>2011-09-26 23:37:32 -0700
commit2722c5140685064be3df771eb9c0e0feff4fded0 (patch)
tree0ac812176a31881d869a369e137d81673a1f47db /ChangeLog
parent29b5d37a8577d83ae0c88b2e894287b990e6849e (diff)
downloadtxr-2722c5140685064be3df771eb9c0e0feff4fded0.tar.gz
txr-2722c5140685064be3df771eb9c0e0feff4fded0.tar.bz2
txr-2722c5140685064be3df771eb9c0e0feff4fded0.zip
Support &#NNNN; decimal escapes also.txr-037
* filter.c (html_hex_continue): Bail with nil if no digits are collected. The &#x; syntax is not translated to anything. (html_dec_continue): New function. (html_hex_handler): Function renamed to html_numeric_handler. (filter_init): Change function-based trie node over to html_numeric_handler.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 37570e42..6b89939f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -20,6 +20,17 @@
2011-09-26 Kaz Kylheku <kaz@kylheku.com>
+ Support &#NNNN; decimal escapes also.
+
+ * filter.c (html_hex_continue): Bail with nil if no digits
+ are collected. The &#x; syntax is not translated to anything.
+ (html_dec_continue): New function.
+ (html_hex_handler): Function renamed to html_numeric_handler.
+ (filter_init): Change function-based trie node over to
+ html_numeric_handler.
+
+2011-09-26 Kaz Kylheku <kaz@kylheku.com>
+
Support &#xNNNN; hex escapes in html. Bugfix in field formatting.
chr function inlined.