]> Sergey Matveev's repositories - nnn.git/commitdiff
Show msg on invalid list input, remove dep
authorArun Prakash Jana <engineerarun@gmail.com>
Wed, 18 Nov 2020 18:10:23 +0000 (23:40 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Wed, 18 Nov 2020 18:10:23 +0000 (23:40 +0530)
src/nnn.c

index 7b108b65b45e0e369386e9529eac60cae3f7ec25..8328718ce2734e38cd04895c64d310566435ada4 100644 (file)
--- 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