in open_file(), remove redundant wording in the error message when we
try to open a device file git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3358 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
@@ -603,7 +603,7 @@ int open_file(const char *filename, bool newfie, FILE **f)
|
||||
* Sorry, /dev/sndstat! */
|
||||
statusbar(S_ISDIR(fileinfo.st_mode) ?
|
||||
_("\"%s\" is a directory") :
|
||||
_("File \"%s\" is a device file"), filename);
|
||||
_("\"%s\" is a device file"), filename);
|
||||
beep();
|
||||
return -1;
|
||||
} else if ((fd = open(filename, O_RDONLY)) == -1) {
|
||||
|
||||
Reference in New Issue
Block a user