commit 8055f0935f14b761715fa4265b5efad1fb5627cd
parent f6287eaf543a21f10157cbeae476f0ad13f29c86
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Thu, 6 Apr 2006 22:57:22 +0000
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
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -11,6 +11,9 @@ CVS code -
- Open all files in binary mode for consistency and robustness.
Changes to load_history() and do_rcfile(). (DLR)
- files.c:
+ open_file()
+ - Remove redundant wording in the error message when we try to
+ open a device file. (DLR)
safe_tempfile()
- Don't ignore $TMPDIR if it's set but blank, for consistency.
(DLR)
diff --git a/src/files.c b/src/files.c
@@ -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) {