summaryrefslogtreecommitdiffhomepage
path: root/src/utf8code.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utf8code.c')
-rw-r--r--src/utf8code.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utf8code.c b/src/utf8code.c
index 71b086c2..4b657cc4 100644
--- a/src/utf8code.c
+++ b/src/utf8code.c
@@ -148,7 +148,7 @@ bool utf8_isalnum(uint32_t c) {
}
bool utf8_isblank(uint32_t c) {
- if (c < 128) return isblank(c) != 0;
+ if (c < 128) return (c == ' ') | (c == '\t');
return utf8_isgroup(U8G_Zs, c);
}