Equalizing pipe error messages.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4623 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
22a1440ce1
commit
46fccb2610
|
@ -1,3 +1,6 @@
|
|||
2014-02-28 Benno Schulenberg <bensberg@justemail.net>
|
||||
* src/text.c (execute_command): Equalize pipe error messages.
|
||||
|
||||
2014-02-28 Eitan Adler <lists@eitanadler.com>
|
||||
* src/nano.c (do_toggle) - Constify a char pointer, to fix
|
||||
a warning when compiling with clang (and -Wall).
|
||||
|
|
|
@ -768,7 +768,7 @@ bool execute_command(const char *command)
|
|||
|
||||
/* Make our pipes. */
|
||||
if (pipe(fd) == -1) {
|
||||
statusbar(_("Could not pipe"));
|
||||
statusbar(_("Could not create pipe"));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue