summaryrefslogtreecommitdiff
path: root/mail/mailline.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mailline.c')
-rw-r--r--mail/mailline.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/mail/mailline.c b/mail/mailline.c
index 55a14c890..6b22642fc 100644
--- a/mail/mailline.c
+++ b/mail/mailline.c
@@ -1,18 +1,18 @@
-/* GNU mailutils - a suite of utilities for electronic mail
- Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
+/* GNU Mailutils -- a suite of utilities for electronic mail
+ Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
- This program is free software; you can redistribute it and/or modify
+ GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GNU Mailutils is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
+ along with GNU Mailutils; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "mail.h"
@@ -391,7 +391,7 @@ ml_reread (const char *prompt, char **text)
if (!line)
{
- util_error("not enough memory to edit the line");
+ util_error (_("not enough memory to edit the line"));
return -1;
}
@@ -419,7 +419,7 @@ ml_reread (const char *prompt, char **text)
if ((p = realloc (line, line_size + LINE_INC)) == NULL)
{
fputs ("\n", stdout);
- util_error ("not enough memory to edit the line");
+ util_error (_("not enough memory to edit the line"));
break;
}
else
@@ -465,8 +465,8 @@ ml_reread (const char *prompt, char **text)
{
if ((p = realloc (line, line_size + LINE_INC)) == NULL)
{
- fputs("\n", stdout);
- util_error("not enough memory to edit the line");
+ fputs ("\n", stdout);
+ util_error (_("not enough memory to edit the line"));
break;
}
else
@@ -502,7 +502,7 @@ ml_reread (const char *prompt, char **text)
if ((p = realloc (line, line_size + LINE_INC)) == NULL)
{
fputs ("\n", stdout);
- util_error ("not enough memory to edit the line");
+ util_error (_("not enough memory to edit the line"));
break;
}
else

Return to:

Send suggestions and report system problems to the System administrator.