(WinMain): Put a space between the binary and its args.
This commit is contained in:
parent
6411ab239c
commit
77727cfd5d
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ WinMain (HINSTANCE hSelf, HINSTANCE hPrev, LPSTR cmdline, int nShow)
|
|||
WIN32_FIND_DATA wfd;
|
||||
HANDLE fh;
|
||||
p = new_cmdline + strlen (new_cmdline);
|
||||
strcpy (p, "\\emacs*.exe");
|
||||
strcpy (p, "\\emacs*.exe ");
|
||||
fh = FindFirstFile (new_cmdline, &wfd);
|
||||
if (fh == INVALID_HANDLE_VALUE)
|
||||
goto error;
|
||||
|
@ -79,7 +79,7 @@ WinMain (HINSTANCE hSelf, HINSTANCE hPrev, LPSTR cmdline, int nShow)
|
|||
strcat (p, " ");
|
||||
}
|
||||
#else
|
||||
strcat (new_cmdline, "\\emacs.exe");
|
||||
strcat (new_cmdline, "\\emacs.exe ");
|
||||
#endif
|
||||
|
||||
/* Append original arguments if any; first look for -wait as first
|
||||
|
|
Loading…
Add table
Reference in a new issue