mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 18:37:33 +00:00
(main): Use EXIT_SUCCESS.
This commit is contained in:
parent
555d92ca3c
commit
3dbc364fd4
1 changed files with 2 additions and 2 deletions
|
|
@ -439,7 +439,7 @@ main (argc, argv)
|
|||
|
||||
/* Maybe wait for an answer. */
|
||||
if (nowait)
|
||||
return 0;
|
||||
return EXIT_SUCCESS;
|
||||
|
||||
printf ("Waiting for Emacs...");
|
||||
fflush (stdout);
|
||||
|
|
@ -452,7 +452,7 @@ main (argc, argv)
|
|||
while (str = fgets (string, BUFSIZ, in))
|
||||
printf ("%s", str);
|
||||
|
||||
return 0;
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
#else /* This is the SYSV IPC section */
|
||||
|
|
|
|||
Loading…
Reference in a new issue