netstar pushed a commit to branch master. http://git.enlightenment.org/apps/evisum.git/commit/?id=25fd0d307c9cbc5803cde381ffc04fb15a69668f
commit 25fd0d307c9cbc5803cde381ffc04fb15a69668f Author: Alastair Poole <nets...@gmail.com> Date: Thu Feb 25 17:16:13 2021 +0000 search: check for control chars --- src/bin/ui/ui_process_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/ui/ui_process_list.c b/src/bin/ui/ui_process_list.c index 0407e7c..1ce8277 100644 --- a/src/bin/ui/ui_process_list.c +++ b/src/bin/ui/ui_process_list.c @@ -1846,7 +1846,7 @@ _win_key_down_search(Ui_Data *pd, Evas_Event_Key_Down *ev) } else if (ev->string && strcmp(ev->keyname, "BackSpace")) { - if (isspace(ev->string[0])) return; + if ((isspace(ev->string[0])) || (iscntrl(ev->string[0]))) return; size_t len = strlen(ev->string); if (len) { --