Show cp file when NNN_NO_X is set

This commit is contained in:
Arun Prakash Jana 2018-04-25 23:25:40 +05:30
parent 6dc4176f57
commit 465d619b7f
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 4 deletions

7
nnn.c
View File

@ -446,11 +446,10 @@ static size_t
xstrlen(const char *s)
{
static size_t len;
len = 0;
if (!s)
return 0;
len = 0;
return len;
while (*s)
++len, ++s;
@ -2021,7 +2020,7 @@ show_help(char *path)
if (copier)
dprintf(fd, "NNN_COPIER: %s\n", copier);
if (getenv("NNN_NO_X"))
dprintf(fd, "NNN_NO_X: %s\n", getenv("NNN_NO_X"));
dprintf(fd, "NNN_NO_X: %s (%s)\n", getenv("NNN_NO_X"), g_cppath);
if (getenv("NNN_SCRIPT"))
dprintf(fd, "NNN_SCRIPT: %s\n", getenv("NNN_SCRIPT"));
if (getenv("NNN_SHOW_HIDDEN"))