From: Bram Moolenaar Date: Sat, 6 Feb 2016 19:32:25 +0000 (+0100) Subject: patch 7.4.1272 X-Git-Tag: v7.4.1272 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1701481c53f4e6756038c9c00d51d491a8f42c65;p=thirdparty%2Fvim.git patch 7.4.1272 Problem: Using future enum value. Solution: Remove it. --- diff --git a/src/if_python.c b/src/if_python.c index 4c2760e06b..250104e0dc 100644 --- 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 index 7194b6edb5..9ba2f28a08 100644 --- 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 index 471bd343cd..fc373c07aa 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1272, /**/ 1271, /**/