]> git.wh0rd.org Git - nano.git/commitdiff
Equalizing pipe error messages.
authorBenno Schulenberg <bensberg@justemail.net>
Fri, 28 Feb 2014 11:49:12 +0000 (11:49 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Fri, 28 Feb 2014 11:49:12 +0000 (11:49 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4623 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/text.c

index bb3c3bc923342418f0e56b3e1f47128f6d996a57..ee34c0afeba9e9e1d0f2ca404db2497acd552ae5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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).
index a15117f72b977331425a1d830956debd65fc9e00..e514772c35839bffda4c3131b5c301529a2ef4f4 100644 (file)
@@ -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;
     }