Mercurial > emacs
diff lib-src/make-docfile.c @ 55442:a47704955f8d
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Likewise, replace 1 with `EXIT_FAILURE'.
(main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
| author | Thien-Thi Nguyen <ttn@gnuvola.org> |
|---|---|
| date | Sat, 08 May 2004 15:23:35 +0000 |
| parents | c2f1d71314c4 |
| children | bbf8071c5ce8 4c90ffeb71c5 |
line wrap: on
line diff
--- a/lib-src/make-docfile.c Sat May 08 15:00:20 2004 +0000 +++ b/lib-src/make-docfile.c Sat May 08 15:23:35 2004 +0000 @@ -104,7 +104,7 @@ char *s1, *s2; { error (s1, s2); - exit (1); + exit (EXIT_FAILURE); } /* Like malloc but get fatal error if memory is exhausted. */ @@ -1210,3 +1210,5 @@ /* arch-tag: f7203aaf-991a-4238-acb5-601db56f2894 (do not change this comment) */ + +/* make-docfile.c ends here */
