diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-31 22:03:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-31 22:03:44 +0200 |
commit | 760d14a55cb2b60bd048246690d17348b4cd0fdf (patch) | |
tree | 4c2b8516ccc5631e3ce9ff578269683c4cfbcded /nsis | |
parent | 7805004319691ee026342525e0bf9df146358dc0 (diff) | |
download | vim-git-760d14a55cb2b60bd048246690d17348b4cd0fdf.tar.gz |
Fix that uninstaller isn't found on 64-bit Windows.
Diffstat (limited to 'nsis')
-rw-r--r-- | nsis/gvim.nsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index f398f5e24..fd2fc1e40 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -450,7 +450,7 @@ Section Uninstall AskRemove: MessageBox MB_YESNO|MB_ICONQUESTION \ "Remove all files in your $1\vimfiles directory? \ - $\nIf you have created something there that you want to keep, click No" IDNO Fin + $\nCAREFUL: If you have created something there that you want to keep, click No" IDNO Fin RMDir /r $1\vimfiles NoRemove: |