# HG changeset patch # User Bram Moolenaar # Date 1599657303 -7200 # Node ID 7bbd111ee55603642cccc207d092dcc437d22ddb # Parent b0bf21cf348bddfc37bef7c58a2425daf173380e patch 8.2.1642: otions test fails Commit: https://github.com/vim/vim/commit/4507f6ada590fb6274b21c416190dfecb23dcf1b Author: Bram Moolenaar Date: Wed Sep 9 15:10:52 2020 +0200 patch 8.2.1642: otions test fails Problem: Otions test fails. Solution: Correct call to OptionG(). diff --git a/runtime/optwin.vim b/runtime/optwin.vim --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -239,7 +239,7 @@ call OptionG("hf", &hf) call Header("moving around, searching and patterns") call append("$", "whichwrap\tlist of flags specifying which commands wrap to another line") -call OptionG("ww") +call OptionG("ww", &ww) call append("$", "startofline\tmany jump commands move the cursor to the first non-blank") call append("$", "\tcharacter of a line") call BinOptionG("sol", &sol) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1642, +/**/ 1641, /**/ 1640,