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 /parser.y | |
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 'parser.y')
-rw-r--r-- | parser.y | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1276,6 +1276,7 @@ static wchar_t char_from_name(const wchar_t *name) { L"return", L'\r' }, { L"esc", 27 }, { L"space", L' ' }, + { L"pnul", 0xDC00 }, { 0, 0 }, }; int i; |