diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-05-08 15:26:33 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-05-08 15:26:33 +0000 |
commit | 65396510c3ff5e5386560d586cb117f6a9d06c27 (patch) | |
tree | e1240e2d08ba9f72fe44e62318c67c3065913d1c /lib-src/make-docfile.c | |
parent | 28712a21247d1a503e7620e47c128c0fc33b3bb3 (diff) | |
download | emacs-65396510c3ff5e5386560d586cb117f6a9d06c27.tar.gz emacs-65396510c3ff5e5386560d586cb117f6a9d06c27.tar.bz2 emacs-65396510c3ff5e5386560d586cb117f6a9d06c27.zip |
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.
Diffstat (limited to 'lib-src/make-docfile.c')
-rw-r--r-- | lib-src/make-docfile.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 1c0bc559225..802b4e09e67 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c @@ -104,7 +104,7 @@ fatal (s1, s2) 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 @@ scan_lisp_file (filename, mode) /* arch-tag: f7203aaf-991a-4238-acb5-601db56f2894 (do not change this comment) */ + +/* make-docfile.c ends here */ |