Mercurial > emacs
changeset 53269:957afba80853
(main): For return code, no longer special-case VMS.
Instead, use `EXIT_SUCCESS' and `EXIT_FAILURE' from stdlib.h.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Wed, 24 Dec 2003 06:49:23 +0000 |
parents | 0e78d4abf53a |
children | 971b19b300e6 |
files | lib-src/make-docfile.c |
diffstat | 1 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/make-docfile.c Wed Dec 24 06:39:58 2003 +0000 +++ b/lib-src/make-docfile.c Wed Dec 24 06:49:23 2003 +0000 @@ -23,6 +23,7 @@ of GNU Emacs. .elc and .el and .c files are allowed. A .o file can also be specified; the .c file it was made from is used. This helps the makefile pass the correct list of files. + Option -d DIR means change to DIR before looking for files. The results, which go to standard output or to a file specified with -a or -o (-a to append, -o to start from nothing), @@ -174,10 +175,7 @@ if (j == i) err_count += scan_file (argv[i]); } -#ifndef VMS - exit (err_count > 0); -#endif /* VMS */ - return err_count > 0; + return (err_count > 0 ? EXIT_FAILURE : EXIT_SUCCESS); } /* Read file FILENAME and output its doc strings to outfile. */