]> granicus.if.org Git - vim/commitdiff
patch 9.0.0727: help in the repository differs from patched version too much v9.0.0727
authorBram Moolenaar <Bram@vim.org>
Tue, 11 Oct 2022 20:54:04 +0000 (21:54 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 11 Oct 2022 20:54:04 +0000 (21:54 +0100)
Problem:    Help in the repository differs from patched version too much.
Solution:   Make a patch for a few help files.

runtime/doc/builtin.txt
runtime/doc/eval.txt
runtime/doc/vim9.txt
src/version.c

index 0cba7c215faee186b89e7b65a2d87e013cd36a26..c2283358b8f4aeef36b4fab0f01bb02b9982e476 100644 (file)
@@ -1,4 +1,4 @@
-*builtin.txt*  For Vim version 9.0.  Last change: 2022 Sep 30
+*builtin.txt*  For Vim version 9.0.  Last change: 2022 Oct 10
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1882,10 +1882,10 @@ cursor({list})
                |setcursorcharpos()|.
 
                Does not change the jumplist.
-               {lnum} is used like with |getline()|.
+               {lnum} is used like with |getline()|, except that if {lnum} is
+               zero, the cursor will stay in the current line.
                If {lnum} is greater than the number of lines in the buffer,
                the cursor will be positioned at the last line in the buffer.
-               If {lnum} is zero, the cursor will stay in the current line.
                If {col} is greater than the number of bytes in the line,
                the cursor will be positioned at the last character in the
                line.
index b1bf1a924d7d8d0d17f00646d7c64f18fe7f719b..5ba2af08b057267580be3705a625783dbb96b56b 100644 (file)
@@ -1,4 +1,4 @@
-*eval.txt*     For Vim version 9.0.  Last change: 2022 Sep 17
+*eval.txt*     For Vim version 9.0.  Last change: 2022 Oct 07
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
index f3a2ab6ee3bfd9c6c69544dd859305349023be10..3dfcf6afcba7990d94b98f280d6126050a2622c7 100644 (file)
@@ -1,4 +1,4 @@
-*vim9.txt*     For Vim version 9.0.  Last change: 2022 Oct 03
+*vim9.txt*     For Vim version 9.0.  Last change: 2022 Oct 11
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -962,6 +962,8 @@ In compiled Vim9 script you get:
        3
 Generally, you should not change the list that is iterated over.  Make a copy
 first if needed.
+When looping over a list of lists, the nested lists can be changed.  The loop
+variable is "final", it cannot be changed but what its value can be changed.
                                                        *E1306*
 The depth of loops, :for and :while loops added together, cannot exceed 10.
 
index 251ece71d00e37f09b8201201c235d6ca0e33816..ec74f52acecc419f92e48aca20d04e03e7dc9695 100644 (file)
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    727,
 /**/
     726,
 /**/