emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lib-src/fakemail.c [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lib-src/fakemail.c [emacs-unicode-2]
Date: Mon, 28 Jun 2004 03:43:27 -0400

Index: emacs/lib-src/fakemail.c
diff -c emacs/lib-src/fakemail.c:1.30.10.1 emacs/lib-src/fakemail.c:1.30.10.2
*** emacs/lib-src/fakemail.c:1.30.10.1  Fri Apr 16 12:49:44 2004
--- emacs/lib-src/fakemail.c    Mon Jun 28 07:28:22 2004
***************
*** 169,175 ****
       char *s1, *s2;
  {
    error (s1, s2);
!   exit (1);
  }
  
  /* Like malloc but get fatal error if memory is exhausted.  */
--- 169,175 ----
       char *s1, *s2;
  {
    error (s1, s2);
!   exit (EXIT_FAILURE);
  }
  
  /* Like malloc but get fatal error if memory is exhausted.  */
***************
*** 410,416 ****
      no_problems = (no_problems &&
                   ((*rem->action) (rem->handle) == 0));
    the_streams = ((stream_list) NULL);
!   return (no_problems ? 0 : 1);
  }
  
  void
--- 410,416 ----
      no_problems = (no_problems &&
                   ((*rem->action) (rem->handle) == 0));
    the_streams = ((stream_list) NULL);
!   return (no_problems ? EXIT_SUCCESS : EXIT_FAILURE);
  }
  
  void
***************
*** 667,673 ****
        if (next_line == ((line_list *) NULL))
        {
          /* Not a valid header */
!         exit (1);
        }
        *next_line = new_list ();
        (*next_line)->string = alloc_string (length);
--- 667,673 ----
        if (next_line == ((line_list *) NULL))
        {
          /* Not a valid header */
!         exit (EXIT_FAILURE);
        }
        *next_line = new_list ();
        (*next_line)->string = alloc_string (length);
***************
*** 753,755 ****
--- 753,757 ----
  
  /* arch-tag: acb0afa6-315a-4c5b-b9e3-def5725c8783
     (do not change this comment) */
+ 
+ /* fakemail.c ends here */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]