diff options
author | Daniel Hahler <github@thequod.de> | 2017-05-01 15:37:24 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-05-01 15:37:24 +0200 |
commit | cc29827bc2b33d728768f09664d08c86404af105 (patch) | |
tree | 42c8ba87c4f804b8c7d3391d2c3e9cb969c75ff8 | |
parent | a2c2fa68c1077be0a6f026f7cb1aeedeee47e39b (diff) | |
download | rneovim-cc29827bc2b33d728768f09664d08c86404af105.tar.gz rneovim-cc29827bc2b33d728768f09664d08c86404af105.tar.bz2 rneovim-cc29827bc2b33d728768f09664d08c86404af105.zip |
doc/eval.txt: remove references to E706 (#6629)
Removed in Vim in 7.4.1578 (975b5271) and 7.4.1546 (f6f32c38b).
-rw-r--r-- | runtime/doc/eval.txt | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index deae268f56..b7ff1b953c 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -394,10 +394,6 @@ This works like: > : let index = index + 1 :endwhile -Note that all items in the list should be of the same type, otherwise this -results in error |E706|. To avoid this |:unlet| the variable at the end of -the loop. - If all you want to do is modify each item in the list then the |map()| function will be a simpler method than a for loop. @@ -7429,8 +7425,7 @@ systemlist({cmd} [, {input} [, {keepempty}]]) *systemlist()* unless {keepempty} is non-zero. Note that on MS-Windows you may get trailing CR characters. - Returns an empty string on error, so be careful not to run - into |E706|. + Returns an empty string on error. tabpagebuflist([{arg}]) *tabpagebuflist()* |