diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-10-19 19:46:05 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-10-19 19:46:05 +0000 |
commit | 20b25e46b6bc327b42b1d9b0afcb89a88871b774 (patch) | |
tree | c702fbdba22eca62f71939560f4ac9bf6fa96fd9 /src/callproc.c | |
parent | 92280f67937a2247ac51abf2f1f8f20f34039f86 (diff) | |
download | emacs-20b25e46b6bc327b42b1d9b0afcb89a88871b774.tar.gz |
(child_setup): Always use _exit.
Diffstat (limited to 'src/callproc.c')
-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) are changed between the check and this chdir, but we should at least check. */ if (chdir (temp) < 0) - exit (errno); + _exit (errno); /* Strip trailing slashes for PWD, but leave "/" and "//" alone. */ while (i > 2 && temp[i - 1] == '/') |