diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-27 13:08:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-27 13:08:36 +0200 |
commit | 30e8e73506e4522ef4aebf7d525c0e6ffe8805fd (patch) | |
tree | 572d933103927bda359c6f5bdcbf51447f703912 /src/dosinst.c | |
parent | 46a426c9acfdd3d6c0fa134a17681634b9325bee (diff) | |
download | vim-git-30e8e73506e4522ef4aebf7d525c0e6ffe8805fd.tar.gz |
patch 8.1.2082: some files have a weird name to fit in 8.3 charactersv8.1.2082
Problem: Some files have a weird name to fit in 8.3 characters.
Solution: Use a nicer names.
Diffstat (limited to 'src/dosinst.c')
-rw-r--r-- | src/dosinst.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dosinst.c b/src/dosinst.c index 0ea879a39..2ff08420e 100644 --- a/src/dosinst.c +++ b/src/dosinst.c @@ -14,7 +14,7 @@ */ /* - * Include common code for dosinst.c and uninstal.c. + * Include common code for dosinst.c and uninstall.c. */ #define DOSINST #include "dosinst.h" @@ -1686,7 +1686,7 @@ install_registry(void) /* For the NSIS installer use the generated uninstaller. */ if (interactive) - sprintf(uninstall_string, "%s\\uninstal.exe", installdir); + sprintf(uninstall_string, "%s\\uninstall.exe", installdir); else sprintf(uninstall_string, "%s\\uninstall-gui.exe", installdir); @@ -1962,7 +1962,7 @@ install_start_menu(int idx) return; } if (build_shortcut("Uninstall", - interactive ? "uninstal.exe" : "uninstall-gui.exe", "", + interactive ? "uninstall.exe" : "uninstall-gui.exe", "", VIM_STARTMENU, installdir) == FAIL) return; /* For Windows NT the working dir of the vimtutor.bat must be right, |