Problem: Crash when using :pedit in Vim9 script.
Solution: Move check for arguments to after checking there are arguments.
(Yegappan Lakshmanan, closes #9134, closes #9135)
int nr;
int i;
- if (in_vim9script()
- && (check_for_string_or_number_or_list_arg(argvars, 0) == FAIL
- || check_for_dict_arg(argvars, 1) == FAIL))
- return NULL;
-
if (argvars != NULL)
{
+ if (in_vim9script()
+ && (check_for_string_or_number_or_list_arg(argvars, 0) == FAIL
+ || check_for_dict_arg(argvars, 1) == FAIL))
+ return NULL;
+
// Check that arguments look OK.
if (argvars[0].v_type == VAR_NUMBER)
{
CheckDefExecAndScriptFailure(lines, 'E486:', 1)
enddef
+" Test for the 'popuppreview' option
+def Test_popuppreview()
+ set previewpopup=height:10,width:60
+ pedit Xfile
+ var id = popup_findpreview()
+ assert_notequal(id, 0)
+ assert_match('Xfile', popup_getoptions(id).title)
+ popup_clear()
+ set previewpopup&
+enddef
+
" vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 3596,
/**/
3595,
/**/