From 8735f11c58f94af6a6e7be3051c5811c0ff166ae Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Wed, 18 Nov 2020 23:40:23 +0530 Subject: [PATCH] Show msg on invalid list input, remove dep --- src/nnn.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 7b108b6..8328718 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -518,8 +518,8 @@ static char * const utils[] = { }; /* Common strings */ -#define MSG_0_ENTRIES 0 -#define MSG_INVALID_KEY 1 +#define MSG_INVALID_KEY 0 +#define MSG_0_ENTRIES 1 #define STR_TMPFILE 2 #define MSG_0_SELECTED 3 #define MSG_CANCEL 4 @@ -565,8 +565,8 @@ static char * const utils[] = { #endif static const char * const messages[] = { - "0 entries", "invalid key", + "0 entries", "/.nnnXXXXXX", "0 selected", "cancelled", @@ -7321,7 +7321,7 @@ malloc_2: free(paths[i]); malloc_1: if (msgnum) { - if (g_state.pluginit) { + if (home) { /* We are past init stage */ printmsg(messages[msgnum]); xdelay(XDELAY_INTERVAL_MS); } else