/[mailutils]/mailutils/mail/mailline.c
ViewVC logotype

Diff of /mailutils/mail/mailline.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.14 by gray, Thu Oct 3 14:32:47 2002 UTC revision 1.15 by polak, Mon Dec 23 22:01:34 2002 UTC
# Line 1  Line 1 
1  /* GNU mailutils - a suite of utilities for electronic mail  /* GNU Mailutils -- a suite of utilities for electronic mail
2     Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.     Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3    
4     This program is free software; you can redistribute it and/or modify     GNU Mailutils is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2, or (at your option)     the Free Software Foundation; either version 2, or (at your option)
7     any later version.     any later version.
8    
9     This program is distributed in the hope that it will be useful,     GNU Mailutils is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.     GNU General Public License for more details.
13    
14     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software     along with GNU Mailutils; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17    
18  #include "mail.h"  #include "mail.h"
# Line 391  ml_reread (const char *prompt, char **te Line 391  ml_reread (const char *prompt, char **te
391    
392    if (!line)    if (!line)
393      {      {
394        util_error("not enough memory to edit the line");        util_error (_("not enough memory to edit the line"));
395        return -1;        return -1;
396      }      }
397    
# Line 419  ml_reread (const char *prompt, char **te Line 419  ml_reread (const char *prompt, char **te
419            if ((p = realloc (line, line_size + LINE_INC)) == NULL)            if ((p = realloc (line, line_size + LINE_INC)) == NULL)
420              {              {
421                fputs ("\n", stdout);                fputs ("\n", stdout);
422                util_error ("not enough memory to edit the line");                util_error (_("not enough memory to edit the line"));
423                break;                break;
424              }              }
425            else            else
# Line 465  ml_reread (const char *prompt, char **te Line 465  ml_reread (const char *prompt, char **te
465              {              {
466                if ((p = realloc (line, line_size + LINE_INC)) == NULL)                if ((p = realloc (line, line_size + LINE_INC)) == NULL)
467                  {                  {
468                    fputs("\n", stdout);                    fputs ("\n", stdout);
469                    util_error("not enough memory to edit the line");                    util_error (_("not enough memory to edit the line"));
470                    break;                    break;
471                  }                  }
472                else                else
# Line 502  ml_reread (const char *prompt, char **te Line 502  ml_reread (const char *prompt, char **te
502            if ((p = realloc (line, line_size + LINE_INC)) == NULL)            if ((p = realloc (line, line_size + LINE_INC)) == NULL)
503              {              {
504                fputs ("\n", stdout);                fputs ("\n", stdout);
505                util_error ("not enough memory to edit the line");                util_error (_("not enough memory to edit the line"));
506                break;                break;
507              }              }
508            else            else

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26