From 528419269e7939e851ea426e34fb7ae2eec0a561 Mon Sep 17 00:00:00 2001 From: Nikita Zlobin Date: Thu, 10 Aug 2023 23:19:53 +0500 Subject: [PATCH] script: Let script handle empty custom input --- source/modes/script.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/modes/script.c b/source/modes/script.c index 92ec95ef7..2bf602868 100644 --- a/source/modes/script.c +++ b/source/modes/script.c @@ -341,8 +341,7 @@ static ModeMode script_mode_result(Mode *sw, int mretv, char **input, new_list = execute_executor(sw, rmpd->cmd_list[selected_line].entry, &new_length, 1, &(rmpd->cmd_list[selected_line])); - } else if ((mretv & MENU_CUSTOM_INPUT) && *input != NULL && - *input[0] != '\0') { + } else if ((mretv & MENU_CUSTOM_INPUT) && *input != NULL) { if (rmpd->no_custom == FALSE) { script_mode_reset_highlight(sw); new_list = execute_executor(sw, *input, &new_length, 2, NULL);