diff options
| author | Richard M. Stallman | 1995-06-19 23:18:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-06-19 23:18:54 +0000 |
| commit | 5fc0154cf4ce72ff117f8891ed1fddb0af66a528 (patch) | |
| tree | d0eba5b824ab5998ddf070f9e033b33dcd8019af /src | |
| parent | 5402169506a60e77d12259c5a68769c47d5d4e9c (diff) | |
| download | emacs-5fc0154cf4ce72ff117f8891ed1fddb0af66a528.tar.gz emacs-5fc0154cf4ce72ff117f8891ed1fddb0af66a528.zip | |
(sigchld_handler): Change XSETFASTINT to XSETINT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 667dcb9ae66..c37aa1ce9ef 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -3247,8 +3247,8 @@ sigchld_handler (signo) | |||
| 3247 | 3247 | ||
| 3248 | XSETINT (p->tick, ++process_tick); | 3248 | XSETINT (p->tick, ++process_tick); |
| 3249 | u.wt = w; | 3249 | u.wt = w; |
| 3250 | XSETFASTINT (p->raw_status_low, u.i & 0xffff); | 3250 | XSETINT (p->raw_status_low, u.i & 0xffff); |
| 3251 | XSETFASTINT (p->raw_status_high, u.i >> 16); | 3251 | XSETINT (p->raw_status_high, u.i >> 16); |
| 3252 | 3252 | ||
| 3253 | /* If process has terminated, stop waiting for its output. */ | 3253 | /* If process has terminated, stop waiting for its output. */ |
| 3254 | if ((WIFSIGNALED (w) || WIFEXITED (w)) | 3254 | if ((WIFSIGNALED (w) || WIFEXITED (w)) |