From 2b438e6ef4e64aa096d7e6f795fb8a57c7a8c504 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Mon, 20 Nov 2017 19:57:33 +0100 Subject: [PATCH] input: make the macro key discoverable by giving feedback when undefined --- src/winio.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/winio.c b/src/winio.c index f6b06f39..062ac0ee 100644 --- a/src/winio.c +++ b/src/winio.c @@ -101,8 +101,10 @@ void run_macro(void) return; } - if (macro_length == 0) + if (macro_length == 0) { + statusline(HUSH, _("Macro is empty")); return; + } free(key_buffer); key_buffer = (int *)nmalloc(macro_length * sizeof(int));