diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-08-09 18:40:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-08-09 18:40:18 +0000 |
commit | 77727cfd5d9d3665ffc86d643bb9fe0d3cea467d (patch) | |
tree | 2a4e393336c24a299674d6d4422a7430552914bb /nt/runemacs.c | |
parent | 6411ab239c66823f0fa70f8901009319624b9523 (diff) | |
download | emacs-77727cfd5d9d3665ffc86d643bb9fe0d3cea467d.tar.gz |
(WinMain): Put a space between the binary and its args.
Diffstat (limited to 'nt/runemacs.c')
-rw-r--r-- | nt/runemacs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nt/runemacs.c b/nt/runemacs.c index fe10021e98f..88e14a30d81 100644 --- a/nt/runemacs.c +++ b/nt/runemacs.c @@ -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 |