Skip to content

Commit eba6d8c

Browse files
committed
patch 7.4.1280
Problem: Missing case value. Solution: Add VAR_JOB.
1 parent 595e64e commit eba6d8c

3 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/if_python.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1560,6 +1560,7 @@ do_pyeval (char_u *str, typval_T *rettv)
15601560
case VAR_STRING:
15611561
case VAR_FLOAT:
15621562
case VAR_SPECIAL:
1563+
case VAR_JOB:
15631564
break;
15641565
}
15651566
}

src/if_python3.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1653,6 +1653,7 @@ do_py3eval (char_u *str, typval_T *rettv)
16531653
case VAR_STRING:
16541654
case VAR_FLOAT:
16551655
case VAR_SPECIAL:
1656+
case VAR_JOB:
16561657
break;
16571658
}
16581659
}

src/version.c

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

748748
static int included_patches[] =
749749
{ /* Add new patch number below this line */
750+
/**/
751+
1280,
750752
/**/
751753
1279,
752754
/**/

0 commit comments

Comments
 (0)