# HG changeset patch # User Bram Moolenaar # Date 1619956803 -7200 # Node ID d5b5267595c543c43c4b9dec4423329f20351522 # Parent 9bc67522a0c0fabfea2a588676240b4574911ef2 patch 8.2.2823: MS-Windows: launching Vim from installer doesn't open README Commit: https://github.com/vim/vim/commit/5f628a12e5c7ebd1145ae1c089d1be1751b700c1 Author: Bram Moolenaar Date: Sun May 2 13:59:46 2021 +0200 patch 8.2.2823: MS-Windows: launching Vim from installer doesn't open README Problem: MS-Windows: launching Vim from installer doesn't open README. Solution: Adjust the quotes. diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -302,7 +302,7 @@ FunctionEnd Function LaunchApplication SetOutPath $0 - ShellExecAsUser::ShellExecAsUser "" "$0\gvim.exe" "-R $"$0\README.txt$"" + ShellExecAsUser::ShellExecAsUser "" "$0\gvim.exe" '-R "$0\README.txt"' FunctionEnd ########################################################## diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2823, +/**/ 2822, /**/ 2821,