diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-10-11 21:54:04 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-10-11 21:54:04 +0100 |
commit | 7c6cd443757348aa987eed87506549ab6b2079fe (patch) | |
tree | 0ed5765f72d40daa5bcf0d061b22d037cea83024 | |
parent | 159b2d5bfc4edc013024e8c996141d37542ebc15 (diff) | |
download | vim-git-7c6cd443757348aa987eed87506549ab6b2079fe.tar.gz |
patch 9.0.0727: help in the repository differs from patched version too muchv9.0.0727
Problem: Help in the repository differs from patched version too much.
Solution: Make a patch for a few help files.
-rw-r--r-- | runtime/doc/builtin.txt | 6 | ||||
-rw-r--r-- | runtime/doc/eval.txt | 2 | ||||
-rw-r--r-- | runtime/doc/vim9.txt | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
4 files changed, 9 insertions, 5 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 0cba7c215..c2283358b 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -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. diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index b1bf1a924..5ba2af08b 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -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 diff --git a/runtime/doc/vim9.txt b/runtime/doc/vim9.txt index f3a2ab6ee..3dfcf6afc 100644 --- a/runtime/doc/vim9.txt +++ b/runtime/doc/vim9.txt @@ -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. diff --git a/src/version.c b/src/version.c index 251ece71d..ec74f52ac 100644 --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 727, +/**/ 726, /**/ 725, |