Problem: win_execute() unexpectedly returns number zero when failing.
Solution: Return an empty string. (closes #7665)
win_T *save_curwin;
tabpage_T *save_curtab;
+ // Return an empty string if something fails.
+ rettv->v_type = VAR_STRING;
+ rettv->vval.v_string = NULL;
+
if (wp != NULL && tp != NULL)
{
pos_T curpos = wp->w_cursor;
call win_gotoid(thiswin)
let line = win_execute(otherwin, 'echo getline(1)')
call assert_match('the new window', line)
+ let line = win_execute(134343, 'echo getline(1)')
+ call assert_equal('', line)
if has('popupwin')
let popupwin = popup_create('the popup win', {'line': 2, 'col': 3})
timer_stop(id)
enddef
+def Test_win_execute()
+ assert_equal("\n" .. winnr(), win_execute(win_getid(), 'echo winnr()'))
+ assert_equal('', win_execute(342343, 'echo winnr()'))
+enddef
+
def Test_win_splitmove()
split
win_splitmove(1, 2, {vertical: true, rightbelow: true})
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 2340,
/**/
2339,
/**/