aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorPhilipp Stephani2020-12-23 11:43:37 +0100
committerPhilipp Stephani2020-12-23 11:44:54 +0100
commit3edc4fd53ff9e1355da2371400aac4d5897ca190 (patch)
tree72f2e8b00784cbb720eeacaa54826d00266906ae /src/process.c
parent268a3d32fb5a26c09787627d12a4dfc61ba059ff (diff)
downloademacs-3edc4fd53ff9e1355da2371400aac4d5897ca190.tar.gz
emacs-3edc4fd53ff9e1355da2371400aac4d5897ca190.zip
Remove an unused parameter from 'child_setup' function.
* src/callproc.c (child_setup): Remove unused SET_PGRP parameter. * src/callproc.c (call_process): * src/process.c (create_process): Fix all callers.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c4
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