From b6f55bb5b4d7d03cdf47d552db20d06e41354d5f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 10 Aug 2021 10:23:27 +0200 Subject: [PATCH] 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) --- runtime/doc/eval.txt | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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, /**/ -- 2.40.0