Skip to content

Commit b6f55bb

Browse files
committed
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)
1 parent b56c441 commit b6f55bb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

runtime/doc/eval.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4539,7 +4539,7 @@ exists({expr}) The result is a Number, which is |TRUE| if {expr} is defined,
45394539
Varname()->exists()
45404540
<
45414541

4542-
exists_compiled({expr}) *exists()*
4542+
exists_compiled({expr}) *exists_compiled()*
45434543
Like `exists()` but evaluated at compile time. This is useful
45444544
to skip a block where a function is used that would otherwise
45454545
give an error: >

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,8 @@ static char *(features[]) =
755755

756756
static int included_patches[] =
757757
{ /* Add new patch number below this line */
758+
/**/
759+
3323,
758760
/**/
759761
3322,
760762
/**/

0 commit comments

Comments
 (0)