diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-24 21:34:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-24 21:34:22 +0200 |
commit | 442b4225d3310599a8bc9107dc3f7b4153a286c4 (patch) | |
tree | 518b9298185272fad43e5afbc8a7cde21dc867e8 /src/dosinst.h | |
parent | e66194a54e0303568e7db1cb8772e2709afd864c (diff) | |
download | vim-git-442b4225d3310599a8bc9107dc3f7b4153a286c4.tar.gz |
Improve the MS-Windows installer.
Diffstat (limited to 'src/dosinst.h')
-rw-r--r-- | src/dosinst.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dosinst.h b/src/dosinst.h index 779b3fc04..605312936 100644 --- a/src/dosinst.h +++ b/src/dosinst.h @@ -418,12 +418,12 @@ run_command(char *cmd) /* There is a cmd.exe, so this might be Windows NT. If it is, * we need to call cmd.exe explicitly. If it is a later OS, * calling cmd.exe won't hurt if it is present. - * Also, "wait" on NT expects a window title argument. + * Also, "start" on NT expects a window title argument. */ /* Replace the slashes with backslashes. */ while ((p = strchr(cmd_path, '/')) != NULL) *p = '\\'; - sprintf(cmd_buf, "%s /c start \"vimcmd\" /w %s", cmd_path, cmd); + sprintf(cmd_buf, "%s /c start \"vimcmd\" /wait %s", cmd_path, cmd); free(cmd_path); } else |