Commit c2518dd5 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

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.
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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) ||
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment