From 46fccb2610da36c9c16a157ab289876e3c4a2362 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Fri, 28 Feb 2014 11:49:12 +0000 Subject: [PATCH] Equalizing pipe error messages. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4623 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 3 +++ src/text.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bb3c3bc9..ee34c0af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2014-02-28 Benno Schulenberg + * src/text.c (execute_command): Equalize pipe error messages. + 2014-02-28 Eitan Adler * src/nano.c (do_toggle) - Constify a char pointer, to fix a warning when compiling with clang (and -Wall). diff --git a/src/text.c b/src/text.c index a15117f7..e514772c 100644 --- a/src/text.c +++ b/src/text.c @@ -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; }