summaryrefslogtreecommitdiff
path: root/src/ctype/iswlower.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype/iswlower.c')
-rw-r--r--src/ctype/iswlower.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ctype/iswlower.c b/src/ctype/iswlower.c
index 0a568e77..438fe26a 100644
--- a/src/ctype/iswlower.c
+++ b/src/ctype/iswlower.c
@@ -2,5 +2,5 @@
int iswlower(wint_t wc)
{
- return towupper(wc) != wc;
+ return towupper(wc) != wc || wc == 0xdf;
}