changeset 25573:5dbc77a66aca v8.2.3323

patch 8.2.3323: Vim9: Cannot use :silent with :endwhile Commit: https://github.com/vim/vim/commit/b6f55bb5b4d7d03cdf47d552db20d06e41354d5f Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 10 10:23:27 2021 +0200 patch 8.2.3323: Vim9: Cannot use :silent with :endwhile Problem: Vim9: Cannot use :silent with :endwhile. Solution: Allow for using the :silent modifier. (closes https://github.com/vim/vim/issues/8737)
author Bram Moolenaar <Bram@vim.org>
date Tue, 10 Aug 2021 10:30:03 +0200
parents 1acfb0a552d7
children bd32fe0605af
files runtime/doc/eval.txt src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -4539,7 +4539,7 @@ exists({expr})	The result is a Number, w
 			Varname()->exists()
 <
 
-exists_compiled({expr})						*exists()*
+exists_compiled({expr})					*exists_compiled()*
 		Like `exists()` but evaluated at compile time.  This is useful
 		to skip a block where a function is used that would otherwise
 		give an error: >
--- a/src/version.c
+++ b/src/version.c
@@ -756,6 +756,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3323,
+/**/
     3322,
 /**/
     3321,