summaryrefslogtreecommitdiffstats
path: root/ColumnsPanel.c
diff options
context:
space:
mode:
Diffstat (limited to 'ColumnsPanel.c')
-rw-r--r--ColumnsPanel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ColumnsPanel.c b/ColumnsPanel.c
index 63348ec5..b2a82465 100644
--- a/ColumnsPanel.c
+++ b/ColumnsPanel.c
@@ -95,7 +95,7 @@ static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) {
}
default:
{
- if (0 < ch && ch < 255 && isalpha((unsigned char)ch))
+ if (0 < ch && ch < 255 && isgraph((unsigned char)ch))
result = Panel_selectByTyping(super, ch);
if (result == BREAK_LOOP)
result = IGNORED;