changeset 22186:7bbd111ee556 v8.2.1642

patch 8.2.1642: otions test fails Commit: https://github.com/vim/vim/commit/4507f6ada590fb6274b21c416190dfecb23dcf1b Author: Bram Moolenaar <Bram@vim.org> 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().
author Bram Moolenaar <Bram@vim.org>
date Wed, 09 Sep 2020 15:15:03 +0200
parents b0bf21cf348b
children cc2879441e5d
files runtime/optwin.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -239,7 +239,7 @@ call <SID>OptionG("hf", &hf)
 
 call <SID>Header("moving around, searching and patterns")
 call append("$", "whichwrap\tlist of flags specifying which commands wrap to another line")
-call <SID>OptionG("ww")
+call <SID>OptionG("ww", &ww)
 call append("$", "startofline\tmany jump commands move the cursor to the first non-blank")
 call append("$", "\tcharacter of a line")
 call <SID>BinOptionG("sol", &sol)
--- 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,