From 4507f6ada590fb6274b21c416190dfecb23dcf1b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 9 Sep 2020 15:10:52 +0200 Subject: [PATCH] patch 8.2.1642: otions test fails Problem: Otions test fails. Solution: Correct call to OptionG(). --- runtime/optwin.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 857f83f49..dd3a1e515 100644 --- 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 index 7390d399c..54bb12884 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1642, /**/ 1641, /**/ -- 2.50.1