diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-06-26 23:18:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-06-26 23:18:45 +0200 |
commit | bd87eb38c558521ff709651ac190ffd1b9dee057 (patch) | |
tree | 8de5de6fc949d0f2ff5f0e986b52139b24ebf01a /src/dosinst.c | |
parent | a87b72cc316e065d66dcbcf7ec1cde330adef3a3 (diff) | |
download | vim-git-bd87eb38c558521ff709651ac190ffd1b9dee057.tar.gz |
patch 8.1.0117: URL in install program still points to SourceForgev8.1.0117
Problem: URL in install program still points to SourceForge.
Solution: Change it to www.vim.org. (closes #3100)
Diffstat (limited to 'src/dosinst.c')
-rw-r--r-- | src/dosinst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dosinst.c b/src/dosinst.c index e5d1f75fd..64edbbdae 100644 --- a/src/dosinst.c +++ b/src/dosinst.c @@ -1878,7 +1878,7 @@ install_start_menu(int idx) add_pathsep(shell_folder_path); strcat(shell_folder_path, "Vim Online.url"); if (!WritePrivateProfileString("InternetShortcut", "URL", - "http://vim.sf.net/", shell_folder_path)) + "https://www.vim.org/", shell_folder_path)) { printf("Creating the Vim online URL failed\n"); return; |