File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ find_buffer(typval_T *avar)
8888
8989 if (avar -> v_type == VAR_NUMBER )
9090 buf = buflist_findnr ((int )avar -> vval .v_number );
91+ else if (in_vim9script () && check_for_string_arg (avar , 0 ) == FAIL )
92+ return NULL ;
9193 else if (avar -> v_type == VAR_STRING && avar -> vval .v_string != NULL )
9294 {
9395 buf = buflist_findname_exp (avar -> vval .v_string );
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ def Test_balloon_show()
133133enddef
134134
135135def Test_balloon_split ()
136- CheckFeature balloon_eval
136+ CheckFeature balloon_eval_term
137137
138138 assert_fails (' balloon_split(true)' , ' E1174:' )
139139enddef
Original file line number Diff line number Diff line change @@ -750,6 +750,8 @@ static char *(features[]) =
750750
751751static int included_patches [] =
752752{ /* Add new patch number below this line */
753+ /**/
754+ 2665 ,
753755/**/
754756 2664 ,
755757/**/
You can’t perform that action at this time.
0 commit comments