comparison src/dosinst.h @ 19431:9800e126eaa2 v8.2.0273

patch 8.2.0273: MS-Windows uninstall may delete wrong batch file Commit: https://github.com/vim/vim/commit/1fa8d2c33d7290eda7dc2a94d4ec6a599a2d61dd Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 17 22:53:14 2020 +0100 patch 8.2.0273: MS-Windows uninstall may delete wrong batch file Problem: MS-Windows uninstall may delete wrong batch file. Solution: Add specific marker in the generated batch file. (Ken Takata, closes #5654)
author Bram Moolenaar <Bram@vim.org>
date Mon, 17 Feb 2020 23:00:04 +0100
parents 1e78bf92f168
children faf7fcd1c8d5
comparison
equal deleted inserted replaced
19430:f08b2ab4e1d0 19431:9800e126eaa2
352 "gvimdiff.exe","gvim.exe", "-d"}, 352 "gvimdiff.exe","gvim.exe", "-d"},
353 {"vimtutor","vimtutor.bat", "Vim tutor.lnk", 353 {"vimtutor","vimtutor.bat", "Vim tutor.lnk",
354 "vimtutor.bat", "vimtutor.bat", ""}, 354 "vimtutor.bat", "vimtutor.bat", ""},
355 }; 355 };
356 356
357 /* Uninstall key for vim.bat, etc. */
358 #define VIMBAT_UNINSTKEY "rem # uninstall key: " VIM_VERSION_NODOT " #"
359
357 #define ICON_COUNT 3 360 #define ICON_COUNT 3
358 char *(icon_names[ICON_COUNT]) = 361 char *(icon_names[ICON_COUNT]) =
359 {"gVim " VIM_VERSION_SHORT, 362 {"gVim " VIM_VERSION_SHORT,
360 "gVim Easy " VIM_VERSION_SHORT, 363 "gVim Easy " VIM_VERSION_SHORT,
361 "gVim Read only " VIM_VERSION_SHORT}; 364 "gVim Read only " VIM_VERSION_SHORT};