diff options
Diffstat (limited to 'src/process.c')
| -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 9efefb1de73..b82942d42d0 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2254,9 +2254,9 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir) | |||
| 2254 | if (forkerr < 0) | 2254 | if (forkerr < 0) |
| 2255 | forkerr = forkout; | 2255 | forkerr = forkout; |
| 2256 | #ifdef WINDOWSNT | 2256 | #ifdef WINDOWSNT |
| 2257 | pid = child_setup (forkin, forkout, forkerr, new_argv, 1, current_dir); | 2257 | pid = child_setup (forkin, forkout, forkerr, new_argv, current_dir); |
| 2258 | #else /* not WINDOWSNT */ | 2258 | #else /* not WINDOWSNT */ |
| 2259 | child_setup (forkin, forkout, forkerr, new_argv, 1, current_dir); | 2259 | child_setup (forkin, forkout, forkerr, new_argv, current_dir); |
| 2260 | #endif /* not WINDOWSNT */ | 2260 | #endif /* not WINDOWSNT */ |
| 2261 | } | 2261 | } |
| 2262 | 2262 | ||