summaryrefslogtreecommitdiff
path: root/src/wctype
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-28 15:37:09 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-28 15:37:09 -0500
commit66032978e77880b3e6b199d61450316946b5fd4f (patch)
treec3e24148447d4b17a95fe3e1544342a01ec23784 /src/wctype
parent117fd0bf7ada734f7a64d892fdcdfc9050a00d50 (diff)
add missing "blank"
Diffstat (limited to 'src/wctype')
-rw-r--r--src/wctype/wctype.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wctype/wctype.c b/src/wctype/wctype.c
index cad10dae..82a6ac5b 100644
--- a/src/wctype/wctype.c
+++ b/src/wctype/wctype.c
@@ -12,6 +12,8 @@ wctype_t wctype(const char * property)
return CT_ALPHA | CT_DIGIT;
} else if (!strcmp(property, "alpha")) {
return CT_ALPHA;
+ } else if (!strcmp(property, "blank")) {
+ return CT_BLANK;
} else if (!strcmp(property, "cntrl")) {
return CT_CNTRL;
} else if (!strcmp(property, "digit")) {