mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.3264: Vim9: assign test fails
Problem: Vim9: assign test fails. Solution: Add missing change.
This commit is contained in:
@@ -1515,9 +1515,11 @@ tv_op(typval_T *tv1, typval_T *tv2, char_u *op)
|
|||||||
char_u *s;
|
char_u *s;
|
||||||
int failed = FALSE;
|
int failed = FALSE;
|
||||||
|
|
||||||
// Can't do anything with a Funcref, Dict, v:true on the right.
|
// Can't do anything with a Funcref or Dict on the right.
|
||||||
|
// v:true and friends only work with "..=".
|
||||||
if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT
|
if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT
|
||||||
&& tv2->v_type != VAR_BOOL && tv2->v_type != VAR_SPECIAL)
|
&& ((tv2->v_type != VAR_BOOL && tv2->v_type != VAR_SPECIAL)
|
||||||
|
|| *op == '.'))
|
||||||
{
|
{
|
||||||
switch (tv1->v_type)
|
switch (tv1->v_type)
|
||||||
{
|
{
|
||||||
|
@@ -755,6 +755,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
3264,
|
||||||
/**/
|
/**/
|
||||||
3263,
|
3263,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user