nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit c3a9578b826fc65771064dd883d700b5653cbaa6
parent 6351dab3e6afebd7bc73edc0c21a36bdb309ae3a
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Tue, 26 Mar 2024 11:24:57 +0100

feedback: raise the level of "Macro is empty", to match similar messages

The other three "... is empty" messages use the AHEM error level too.

Diffstat:
Msrc/winio.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/winio.c b/src/winio.c @@ -125,7 +125,7 @@ void run_macro(void) } if (macro_length == 0) { - statusline(REMARK, _("Macro is empty")); + statusline(AHEM, _("Macro is empty")); return; }