diff options
| author | Richard M. Stallman | 1994-10-19 19:46:05 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-10-19 19:46:05 +0000 |
| commit | 20b25e46b6bc327b42b1d9b0afcb89a88871b774 (patch) | |
| tree | c702fbdba22eca62f71939560f4ac9bf6fa96fd9 /src | |
| parent | 92280f67937a2247ac51abf2f1f8f20f34039f86 (diff) | |
| download | emacs-20b25e46b6bc327b42b1d9b0afcb89a88871b774.tar.gz emacs-20b25e46b6bc327b42b1d9b0afcb89a88871b774.zip | |
(child_setup): Always use _exit.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c index d4a92655c50..4f1c3913469 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -627,7 +627,7 @@ child_setup (in, out, err, new_argv, set_pgrp, current_dir) | |||
| 627 | are changed between the check and this chdir, but we should | 627 | are changed between the check and this chdir, but we should |
| 628 | at least check. */ | 628 | at least check. */ |
| 629 | if (chdir (temp) < 0) | 629 | if (chdir (temp) < 0) |
| 630 | exit (errno); | 630 | _exit (errno); |
| 631 | 631 | ||
| 632 | /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */ | 632 | /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */ |
| 633 | while (i > 2 && temp[i - 1] == '/') | 633 | while (i > 2 && temp[i - 1] == '/') |