From: Bram Moolenaar Date: Tue, 10 Aug 2021 08:23:27 +0000 (+0200) Subject: patch 8.2.3323: Vim9: Cannot use :silent with :endwhile X-Git-Tag: v8.2.3323 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6f55bb5b4d7d03cdf47d552db20d06e41354d5f;p=vim 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 #8737) --- diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 4e258c577..05c06ec7f 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -4539,7 +4539,7 @@ exists({expr}) The result is a Number, which is |TRUE| if {expr} is defined, 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: > diff --git a/src/version.c b/src/version.c index 5b34ac70b..88dc354e4 100644 --- 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 */ +/**/ + 3323, /**/ 3322, /**/