summaryrefslogtreecommitdiff
path: root/src/w32proc.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-11-19 18:29:42 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2011-11-19 18:29:42 -0800
commit14518570f857096a7c4856256e1798cedd92d4ce (patch)
tree9507f245ef672f49d12450210811614ca7ad7f86 /src/w32proc.c
parent440478e6f688fa2ae2b3b50db27893d98855f168 (diff)
downloademacs-14518570f857096a7c4856256e1798cedd92d4ce.tar.gz
Spelling fixes.
Diffstat (limited to 'src/w32proc.c')
-rw-r--r--src/w32proc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/w32proc.c b/src/w32proc.c
index 279816bcc3e..254a32503c4 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -122,12 +122,12 @@ new_child (void)
for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
if (!CHILD_ACTIVE (cp))
- goto Initialise;
+ goto Initialize;
if (child_proc_count == MAX_CHILDREN)
return NULL;
cp = &child_procs[child_proc_count++];
- Initialise:
+ Initialize:
memset (cp, 0, sizeof (*cp));
cp->fd = -1;
cp->pid = -1;
@@ -821,7 +821,7 @@ sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
The w32 GNU-based library from Cygnus doubles quotes to escape
them, while MSVC uses backslash for escaping. (Actually the MSVC
- startup code does attempt to recognise doubled quotes and accept
+ startup code does attempt to recognize doubled quotes and accept
them, but gets it wrong and ends up requiring three quotes to get a
single embedded quote!) So by default we decide whether to use
quote or backslash as the escape character based on whether the