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:
Benno Schulenberg 2016-04-17 16:45:50 +02:00
parent 34a20f8839
commit c2518dd5f0

View File

@ -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) ||