summaryrefslogtreecommitdiffstats
path: root/runtime
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 /runtime
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)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt2
1 files changed, 1 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: >