summaryrefslogtreecommitdiff
path: root/sysutils/htop/patches/patch-ColumnsPanel.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/htop/patches/patch-ColumnsPanel.c')
-rw-r--r--sysutils/htop/patches/patch-ColumnsPanel.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/sysutils/htop/patches/patch-ColumnsPanel.c b/sysutils/htop/patches/patch-ColumnsPanel.c
deleted file mode 100644
index 964c808a5f7..00000000000
--- a/sysutils/htop/patches/patch-ColumnsPanel.c
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ColumnsPanel.c,v 1.1 2015/08/20 13:38:25 jperkin Exp $
-
-Restrict to ASCII characters.
-
---- ColumnsPanel.c.orig 2011-12-26 21:53:10.000000000 +0000
-+++ ColumnsPanel.c
-@@ -70,7 +70,7 @@ static HandlerResult ColumnsPanel_eventH
- }
- default:
- {
-- if (isalpha(ch))
-+ if (isascii(ch) && isalpha(ch))
- result = Panel_selectByTyping(super, ch);
- if (result == BREAK_LOOP)
- result = IGNORED;