From: Bram Moolenaar Date: Sun, 7 Feb 2016 18:25:51 +0000 (+0100) Subject: patch 7.4.1280 X-Git-Tag: v7.4.1280 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eba6d8c66c3511a5e1bfe6ffa30c8bea47d129ad;p=thirdparty%2Fvim.git patch 7.4.1280 Problem: Missing case value. Solution: Add VAR_JOB. --- diff --git a/src/if_python.c b/src/if_python.c index 250104e0dc..17d15bd9ac 100644 --- a/src/if_python.c +++ b/src/if_python.c @@ -1560,6 +1560,7 @@ do_pyeval (char_u *str, typval_T *rettv) case VAR_STRING: case VAR_FLOAT: case VAR_SPECIAL: + case VAR_JOB: break; } } diff --git a/src/if_python3.c b/src/if_python3.c index 9ba2f28a08..77a9ea31de 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -1653,6 +1653,7 @@ do_py3eval (char_u *str, typval_T *rettv) case VAR_STRING: case VAR_FLOAT: case VAR_SPECIAL: + case VAR_JOB: break; } } diff --git a/src/version.c b/src/version.c index 221d0a05ae..c6e7244703 100644 --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1280, /**/ 1279, /**/