# HG changeset patch # User Christian Brabandt # Date 1454787904 -3600 # Node ID a028a16110e2a5c954a75cf488ea3cc7213e6c2f # Parent 4c95c85b2b45599e958653f441836b073d4b6dda commit https://github.com/vim/vim/commit/1701481c53f4e6756038c9c00d51d491a8f42c65 Author: Bram Moolenaar Date: Sat Feb 6 20:32:25 2016 +0100 patch 7.4.1272 Problem: Using future enum value. Solution: Remove it. diff --git a/src/if_python.c b/src/if_python.c --- a/src/if_python.c +++ b/src/if_python.c @@ -1559,7 +1559,6 @@ do_pyeval (char_u *str, typval_T *rettv) case VAR_NUMBER: case VAR_STRING: case VAR_FLOAT: - case VAR_JOB: case VAR_SPECIAL: break; } diff --git a/src/if_python3.c b/src/if_python3.c --- a/src/if_python3.c +++ b/src/if_python3.c @@ -1652,7 +1652,6 @@ do_py3eval (char_u *str, typval_T *rettv case VAR_NUMBER: case VAR_STRING: case VAR_FLOAT: - case VAR_JOB: case VAR_SPECIAL: break; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1272, +/**/ 1271, /**/ 1270,