summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-01 11:17:15 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-01 11:17:15 -0700
commit00ae1477295136c8a3e81b5afae1b714de9822f8 (patch)
tree85939011ccc217a0ebc78b6baa8235bbd61287dd /lib.c
parentad0b7a7d38d77f0cb90e1509e2eb56a6cbb8db75 (diff)
downloadtxr-00ae1477295136c8a3e81b5afae1b714de9822f8.tar.gz
txr-00ae1477295136c8a3e81b5afae1b714de9822f8.tar.bz2
txr-00ae1477295136c8a3e81b5afae1b714de9822f8.zip
chr-iscntrl: recognize Unicode C0 and C1.
* lib.c (chr_iscntrl): Don't use iswcntrl; it fails to report 0x80-0x9F as control characters. A bit of hand-crafted logic does the job. * txr.1: Redocumented.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 11ad76b5..38837e43 100644
--- a/lib.c
+++ b/lib.c
@@ -5897,7 +5897,13 @@ val chr_isascii(val ch)
val chr_iscntrl(val ch)
{
- return tnil(iswcntrl(c_chr(ch)));
+ wchar_t c = c_chr(ch);
+ switch ((c >> 5)) {
+ case 0: case 4:
+ return t;
+ default:
+ return tnil(c == 0x7F);
+ }
}
val chr_isdigit(val ch)