diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2017-08-26 09:37:04 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2017-08-26 09:37:04 +0530 |
commit | ac037935475ba3e6589a27793adc94d58329b7e3 (patch) | |
tree | 934bd4eb7f0b6734ab462c75047e1531da0b91ca /nnn.c | |
parent | 6b6182a61a016aaf230cb117dce58199f4e1ebda (diff) | |
download | nnn-ac037935475ba3e6589a27793adc94d58329b7e3.tar.gz |
A shorter overwrite message (key is not echoed)
Diffstat (limited to 'nnn.c')
-rw-r--r-- | nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2606,7 +2606,7 @@ nochange: /* Check if another file with same name exists */ if (faccessat(fd, tmp, F_OK, AT_SYMLINK_NOFOLLOW) != -1) { /* File with the same name exists */ - printprompt("Press 'y' to overwrite: "); + printprompt("Press 'y' to overwrite"); cleartimeout(); r = getch(); settimeout(); |