aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32proc.c
diff options
context:
space:
mode:
authorGlenn Morris2013-02-01 19:38:21 -0800
committerGlenn Morris2013-02-01 19:38:21 -0800
commit94fbc901707d7c1fd7ec0471d288e585caf59b34 (patch)
tree6d1d48970b231f2ccd2f7c36e4c7298302c00e93 /src/w32proc.c
parent98da8c0f542465341b930d36db8000b5bb2c77c4 (diff)
parent13841bfcc20881a268e3c853f65312390c589700 (diff)
downloademacs-94fbc901707d7c1fd7ec0471d288e585caf59b34.tar.gz
emacs-94fbc901707d7c1fd7ec0471d288e585caf59b34.zip
Merge from emacs-24; up to 2012-12-13T09:45:54Z!lekktu@gmail.com
Diffstat (limited to 'src/w32proc.c')
-rw-r--r--src/w32proc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/w32proc.c b/src/w32proc.c
index 0fcb2993020..615e5329e8c 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -1541,7 +1541,6 @@ sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
1541 child_process *cp; 1541 child_process *cp;
1542 int is_dos_app, is_cygnus_app, is_gui_app; 1542 int is_dos_app, is_cygnus_app, is_gui_app;
1543 int do_quoting = 0; 1543 int do_quoting = 0;
1544 char escape_char;
1545 /* We pass our process ID to our children by setting up an environment 1544 /* We pass our process ID to our children by setting up an environment
1546 variable in their environment. */ 1545 variable in their environment. */
1547 char ppid_env_var_buffer[64]; 1546 char ppid_env_var_buffer[64];
@@ -1554,6 +1553,8 @@ sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
1554 Some extra whitespace characters need quoting in Cygwin programs, 1553 Some extra whitespace characters need quoting in Cygwin programs,
1555 so this list is conditionally modified below. */ 1554 so this list is conditionally modified below. */
1556 char *sepchars = " \t*?"; 1555 char *sepchars = " \t*?";
1556 /* This is for native w32 apps; modified below for Cygwin apps. */
1557 char escape_char = '\\';
1557 1558
1558 /* We don't care about the other modes */ 1559 /* We don't care about the other modes */
1559 if (mode != _P_NOWAIT) 1560 if (mode != _P_NOWAIT)