summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-08-10 10:23:27 +0200
committerBram Moolenaar <Bram@vim.org>2021-08-10 10:23:27 +0200
commitb6f55bb5b4d7d03cdf47d552db20d06e41354d5f (patch)
tree62a113d5d16b0f7b52c1372108af721fbccb6ebb
parentb56c4419d42e024e79b1772c8468c0da7c11275f (diff)
patch 8.2.3323: Vim9: Cannot use :silent with :endwhilev8.2.3323
Problem: Vim9: Cannot use :silent with :endwhile. Solution: Allow for using the :silent modifier. (closes #8737)
-rw-r--r--runtime/doc/eval.txt2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 4e258c5773..05c06ec7f9 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 5b34ac70b2..88dc354e4f 100644
--- 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,