summaryrefslogtreecommitdiff
path: root/src/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.cpp')
-rw-r--r--src/string.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/string.cpp b/src/string.cpp
index 6503f8fd1..d9e27857d 100644
--- a/src/string.cpp
+++ b/src/string.cpp
@@ -194,9 +194,10 @@ void strtolower(char *str)
bool IsValidChar(WChar key, CharSetFilter afilter)
{
switch (afilter) {
- case CS_ALPHANUMERAL: return IsPrintable(key);
- case CS_NUMERAL: return (key >= '0' && key <= '9');
- case CS_ALPHA: return IsPrintable(key) && !(key >= '0' && key <= '9');
+ case CS_ALPHANUMERAL: return IsPrintable(key);
+ case CS_NUMERAL: return (key >= '0' && key <= '9');
+ case CS_NUMERAL_SPACE: return (key >= '0' && key <= '9') || key == ' ';
+ case CS_ALPHA: return IsPrintable(key) && !(key >= '0' && key <= '9');
}
return false;