mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-23 05:11:35 +03:00
inserting: differentiate not finding a file from not finding a string
Because it is a little clearer, and it is what Pico does too. This partly fixes https://savannah.gnu.org/bugs/?47721.
This commit is contained in:
parent
34a20f8839
commit
c2518dd5f0
@ -995,7 +995,7 @@ int open_file(const char *filename, bool newfie, bool quiet, FILE **f)
|
||||
statusbar(_("New File"));
|
||||
return -2;
|
||||
}
|
||||
statusbar(_("\"%s\" not found"), filename);
|
||||
statusbar(_("File \"%s\" not found"), filename);
|
||||
beep();
|
||||
return -1;
|
||||
} else if (S_ISDIR(fileinfo.st_mode) || S_ISCHR(fileinfo.st_mode) ||
|
||||
|
Loading…
Reference in New Issue
Block a user