diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-06-15 21:48:04 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-06-15 21:48:04 -0700 |
commit | 4a223e77f8bf67c9236232bce354d60951b25bed (patch) | |
tree | 9e9a1bb72884b56dfaa240763f979ca630cea23e /ChangeLog | |
parent | 548dd7697516a2fea8930d3fa9e88ea48d5ab630 (diff) | |
download | txr-4a223e77f8bf67c9236232bce354d60951b25bed.tar.gz txr-4a223e77f8bf67c9236232bce354d60951b25bed.tar.bz2 txr-4a223e77f8bf67c9236232bce354d60951b25bed.zip |
* lib.c (obj_print): Render character DC00 as "pnul".
Clean up code which chooses rendering for characters.
Print C0 and C1 control characters, as well as D800-DFFF,
FFFE and FFFF and characters above FFFF using hex;
others are printed using the #\<char> notation.
* parser.y (char_from_name): map "pnul" to DC00.
* txr.1: Documented pnul, clarified character
printing rules, and added a cautionary note about
possible ambiguity in printing.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1,5 +1,19 @@ 2014-06-16 Kaz Kylheku <kaz@kylheku.com> + * lib.c (obj_print): Render character DC00 as "pnul". + Clean up code which chooses rendering for characters. + Print C0 and C1 control characters, as well as D800-DFFF, + FFFE and FFFF and characters above FFFF using hex; + others are printed using the #\<char> notation. + + * parser.y (char_from_name): map "pnul" to DC00. + + * txr.1: Documented pnul, clarified character + printing rules, and added a cautionary note about + possible ambiguity in printing. + +2014-06-16 Kaz Kylheku <kaz@kylheku.com> + * eval.c (eval_init): Register pos_max, pos_min, find_max, find_min and seqp as intrinsics. |