diff options
author | Jason Rumney <jasonr@gnu.org> | 2004-04-10 21:06:31 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2004-04-10 21:06:31 +0000 |
commit | 1e3c9713ef60eac45a3b8aa3eb0b3c37a106e16a (patch) | |
tree | 0c4bf292730d55e8d011e0a51537a30a375c1e19 /nt/runemacs.c | |
parent | 99a72bdf2392844d9483ca6446b795effd8aadfb (diff) | |
download | emacs-1e3c9713ef60eac45a3b8aa3eb0b3c37a106e16a.tar.gz |
(WinMain): Let emacs environment default to parent.
Diffstat (limited to 'nt/runemacs.c')
-rw-r--r-- | nt/runemacs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/runemacs.c b/nt/runemacs.c index cdd46a6008d..afa5340ef53 100644 --- a/nt/runemacs.c +++ b/nt/runemacs.c @@ -126,7 +126,7 @@ WinMain (HINSTANCE hSelf, HINSTANCE hPrev, LPSTR cmdline, int nShow) sec_attrs.bInheritHandle = FALSE; if (CreateProcess (NULL, new_cmdline, &sec_attrs, NULL, TRUE, priority_class, - GetEnvironmentStrings (), NULL, &start, &child)) + NULL, NULL, &start, &child)) { if (wait_for_child) { |