diff options
| author | Paul Eggert | 2011-03-17 21:58:44 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-17 21:58:44 -0700 |
| commit | 6bd8c14466b0787f9675279727efdff93bced7bb (patch) | |
| tree | 72710babd2dca83fc0c189c489d99f0c98c85836 /src/lisp.h | |
| parent | cb1d0ef7c91692a70f3628c5b33095e48f325250 (diff) | |
| download | emacs-6bd8c14466b0787f9675279727efdff93bced7bb.tar.gz emacs-6bd8c14466b0787f9675279727efdff93bced7bb.zip | |
* lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
This should get cleaned up, so that child_setup has the
same signature on all platforms.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 283b0989c1d..645b82c80cf 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -3233,7 +3233,11 @@ extern void syms_of_process (void); | |||
| 3233 | extern void setup_process_coding_systems (Lisp_Object); | 3233 | extern void setup_process_coding_systems (Lisp_Object); |
| 3234 | 3234 | ||
| 3235 | EXFUN (Fcall_process, MANY); | 3235 | EXFUN (Fcall_process, MANY); |
| 3236 | extern int child_setup (int, int, int, char **, int, Lisp_Object); | 3236 | extern int child_setup (int, int, int, char **, int, Lisp_Object) |
| 3237 | #ifndef DOS_NT | ||
| 3238 | NO_RETURN | ||
| 3239 | #endif | ||
| 3240 | ; | ||
| 3237 | extern void init_callproc_1 (void); | 3241 | extern void init_callproc_1 (void); |
| 3238 | extern void init_callproc (void); | 3242 | extern void init_callproc (void); |
| 3239 | extern void set_initial_environment (void); | 3243 | extern void set_initial_environment (void); |