summaryrefslogtreecommitdiff
path: root/PC/launcher.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-18 21:53:15 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-18 21:53:15 +0200
commit009b811d678f36cf63be4fe26f3fbaa38aa0078e (patch)
treea24ddae0e641ac1bce8a5b33526bd05bd04d264c /PC/launcher.c
parent6c32585f677b71eb1206852d24f077f602780c85 (diff)
downloadcpython-git-009b811d678f36cf63be4fe26f3fbaa38aa0078e.tar.gz
Removed unintentional trailing spaces in non-external and non-generated C files.
Diffstat (limited to 'PC/launcher.c')
-rw-r--r--PC/launcher.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/PC/launcher.c b/PC/launcher.c
index 1523020779..fada4c9c16 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -96,7 +96,7 @@ error(int rc, wchar_t * format, ... )
fwprintf(stderr, L"%ls\n", message);
#else
MessageBox(NULL, message, TEXT("Python Launcher is sorry to say ..."),
- MB_OK);
+ MB_OK);
#endif
ExitProcess(rc);
}
@@ -349,7 +349,7 @@ locate_all_pythons()
locate_pythons_for_key(HKEY_CURRENT_USER, KEY_READ | KEY_WOW64_64KEY);
locate_pythons_for_key(HKEY_LOCAL_MACHINE, KEY_READ | KEY_WOW64_64KEY);
}
-#endif
+#endif
// now hit the "native" key for this process bittedness.
debug(L"locating Pythons in native registry\n");
locate_pythons_for_key(HKEY_CURRENT_USER, KEY_READ);
@@ -604,7 +604,7 @@ run_child(wchar_t * cmdline)
// window, or fetching a message). As this launcher doesn't do this
// directly, that cursor remains even after the child process does these
// things. We avoid that by doing a simple post+get message.
- // See http://bugs.python.org/issue17290 and
+ // See http://bugs.python.org/issue17290 and
// https://bitbucket.org/vinay.sajip/pylauncher/issue/20/busy-cursor-for-a-long-time-when-running
MSG msg;