diff options
| author | Thien-Thi Nguyen | 2003-12-24 06:49:23 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2003-12-24 06:49:23 +0000 |
| commit | 08a39b830496f07d491f94d205da822ba7c05a1f (patch) | |
| tree | 3d34816f8e7d7787d86c394ac8aab3b7f8393683 /lib-src | |
| parent | 2d176448abfc1a9142437d05b7a356eaa8fe6670 (diff) | |
| download | emacs-08a39b830496f07d491f94d205da822ba7c05a1f.tar.gz emacs-08a39b830496f07d491f94d205da822ba7c05a1f.zip | |
(main): For return code, no longer special-case VMS.
Instead, use `EXIT_SUCCESS' and `EXIT_FAILURE' from stdlib.h.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/make-docfile.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 7330b821768..4210320b591 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -23,6 +23,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 23 | of GNU Emacs. .elc and .el and .c files are allowed. | 23 | of GNU Emacs. .elc and .el and .c files are allowed. |
| 24 | A .o file can also be specified; the .c file it was made from is used. | 24 | A .o file can also be specified; the .c file it was made from is used. |
| 25 | This helps the makefile pass the correct list of files. | 25 | This helps the makefile pass the correct list of files. |
| 26 | Option -d DIR means change to DIR before looking for files. | ||
| 26 | 27 | ||
| 27 | The results, which go to standard output or to a file | 28 | The results, which go to standard output or to a file |
| 28 | specified with -a or -o (-a to append, -o to start from nothing), | 29 | specified with -a or -o (-a to append, -o to start from nothing), |
| @@ -174,10 +175,7 @@ main (argc, argv) | |||
| 174 | if (j == i) | 175 | if (j == i) |
| 175 | err_count += scan_file (argv[i]); | 176 | err_count += scan_file (argv[i]); |
| 176 | } | 177 | } |
| 177 | #ifndef VMS | 178 | return (err_count > 0 ? EXIT_FAILURE : EXIT_SUCCESS); |
| 178 | exit (err_count > 0); | ||
| 179 | #endif /* VMS */ | ||
| 180 | return err_count > 0; | ||
| 181 | } | 179 | } |
| 182 | 180 | ||
| 183 | /* Read file FILENAME and output its doc strings to outfile. */ | 181 | /* Read file FILENAME and output its doc strings to outfile. */ |