mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
Fix: MS-Windows installer used wrong path for uninstaller key.
This commit is contained in:
parent
4d32c2d31f
commit
16d79a3b62
@ -1089,8 +1089,6 @@ Patch to support horizontal scroll wheel in GTK. Untested. (Bjorn Winckler,
|
|||||||
|
|
||||||
Before (beta) release 7.3:
|
Before (beta) release 7.3:
|
||||||
- Documentation for Python 3 support.
|
- Documentation for Python 3 support.
|
||||||
- MS-Windows uninstaller looks for wrong executable:
|
|
||||||
"ool\vimfiles\syntaxuninstall-gui.exe".
|
|
||||||
|
|
||||||
Before release 7.3:
|
Before release 7.3:
|
||||||
- Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23)
|
- Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23)
|
||||||
|
@ -1525,7 +1525,6 @@ install_registry(void)
|
|||||||
const char *vim_ext_ThreadingModel = "Apartment";
|
const char *vim_ext_ThreadingModel = "Apartment";
|
||||||
const char *vim_ext_name = "Vim Shell Extension";
|
const char *vim_ext_name = "Vim Shell Extension";
|
||||||
const char *vim_ext_clsid = "{51EEE242-AD87-11d3-9C1E-0090278BBD99}";
|
const char *vim_ext_clsid = "{51EEE242-AD87-11d3-9C1E-0090278BBD99}";
|
||||||
char buf[BUFSIZE];
|
|
||||||
char vim_exe_path[BUFSIZE];
|
char vim_exe_path[BUFSIZE];
|
||||||
char display_name[BUFSIZE];
|
char display_name[BUFSIZE];
|
||||||
char uninstall_string[BUFSIZE];
|
char uninstall_string[BUFSIZE];
|
||||||
@ -1571,12 +1570,12 @@ install_registry(void)
|
|||||||
if (interactive)
|
if (interactive)
|
||||||
{
|
{
|
||||||
sprintf(display_name, "Vim " VIM_VERSION_SHORT);
|
sprintf(display_name, "Vim " VIM_VERSION_SHORT);
|
||||||
sprintf(uninstall_string, "%suninstal.exe", buf);
|
sprintf(uninstall_string, "%s\\uninstal.exe", installdir);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
sprintf(display_name, "Vim " VIM_VERSION_SHORT " (self-installing)");
|
sprintf(display_name, "Vim " VIM_VERSION_SHORT " (self-installing)");
|
||||||
sprintf(uninstall_string, "%suninstall-gui.exe", buf);
|
sprintf(uninstall_string, "%s\\uninstall-gui.exe", installdir);
|
||||||
}
|
}
|
||||||
|
|
||||||
lRet = register_uninstall(
|
lRet = register_uninstall(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user