emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/emacs.c


From: Thien-Thi Nguyen
Subject: [Emacs-diffs] Changes to emacs/src/emacs.c
Date: Thu, 03 Mar 2005 10:34:53 -0500

Index: emacs/src/emacs.c
diff -c emacs/src/emacs.c:1.357 emacs/src/emacs.c:1.358
*** emacs/src/emacs.c:1.357     Tue Feb 15 23:19:26 2005
--- emacs/src/emacs.c   Thu Mar  3 15:34:52 2005
***************
*** 2052,2065 ****
    if (STRINGP (Vauto_save_list_file_name))
      unlink (SDATA (Vauto_save_list_file_name));
  
!   exit (INTEGERP (arg) ? XINT (arg)
! #ifdef VMS
!       : 1
! #else
!       : 0
! #endif
!       );
    /* NOTREACHED */
  }
  
  
--- 2052,2060 ----
    if (STRINGP (Vauto_save_list_file_name))
      unlink (SDATA (Vauto_save_list_file_name));
  
!   exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS);
    /* NOTREACHED */
+   return 0;
  }
  
  




reply via email to

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