aboutsummaryrefslogtreecommitdiffstats
path: root/nt/cmdproxy.c
diff options
context:
space:
mode:
authorPaul Eggert2014-01-15 22:24:06 -0800
committerPaul Eggert2014-01-15 22:24:06 -0800
commitc91c771dbe242cd942c00a0a57c18c1482e59fa0 (patch)
treeabb6fcaf49f4bda5eda2443fb5a6f7531a8a2a74 /nt/cmdproxy.c
parent7da02a6769e84cd0a9df8b1bc18ac78df1c0b058 (diff)
downloademacs-c91c771dbe242cd942c00a0a57c18c1482e59fa0.tar.gz
emacs-c91c771dbe242cd942c00a0a57c18c1482e59fa0.zip
Spelling fixes.
Diffstat (limited to 'nt/cmdproxy.c')
-rw-r--r--nt/cmdproxy.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/nt/cmdproxy.c b/nt/cmdproxy.c
index 0674a3fdc84..f3433f63684 100644
--- a/nt/cmdproxy.c
+++ b/nt/cmdproxy.c
@@ -319,7 +319,7 @@ try_dequote_cmdline (char* cmdline)
319 /* Dequoting can only subtract characters, so the length of the 319 /* Dequoting can only subtract characters, so the length of the
320 original command line is a bound on the amount of scratch space 320 original command line is a bound on the amount of scratch space
321 we need. This length, in turn, is bounded by the 32k 321 we need. This length, in turn, is bounded by the 32k
322 CreateProces limit. */ 322 CreateProcess limit. */
323 char * old_pos = cmdline; 323 char * old_pos = cmdline;
324 char * new_cmdline = alloca (strlen(cmdline)); 324 char * new_cmdline = alloca (strlen(cmdline));
325 char * new_pos = new_cmdline; 325 char * new_pos = new_cmdline;
@@ -843,4 +843,3 @@ main (int argc, char ** argv)
843 843
844 return 0; 844 return 0;
845} 845}
846