Skip to content

Commit

Permalink
patch 8.2.3323: Vim9: Cannot use :silent with :endwhile
Browse files Browse the repository at this point in the history
Problem:    Vim9: Cannot use :silent with :endwhile.
Solution:   Allow for using the :silent modifier. (closes #8737)
  • Loading branch information
brammool committed Aug 10, 2021
1 parent b56c441 commit b6f55bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/doc/eval.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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: >
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 +755,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3323,
/**/
3322,
/**/
Expand Down

0 comments on commit b6f55bb

Please sign in to comment.