From: Bram Moolenaar Date: Sat, 2 Jan 2021 14:49:28 +0000 (+0100) Subject: patch 8.2.2273: build failure X-Git-Tag: v8.2.2273 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=628c102d128b4e376916ba38b883eb9ae9f41f31;p=thirdparty%2Fvim.git patch 8.2.2273: build failure Problem: Build failure. Solution: Add missing changes to header file. --- diff --git a/src/version.c b/src/version.c index 94a22c00da..59f4b4db67 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2273, /**/ 2272, /**/ diff --git a/src/vim9.h b/src/vim9.h index fd28e5f137..0f1a9ab207 100644 --- a/src/vim9.h +++ b/src/vim9.h @@ -141,8 +141,9 @@ typedef enum { ISN_NEGATENR, // apply "-" to number ISN_CHECKNR, // check value can be used as a number - ISN_CHECKTYPE, // check value type is isn_arg.type.tc_type + ISN_CHECKTYPE, // check value type is isn_arg.type.ct_type ISN_CHECKLEN, // check list length is isn_arg.checklen.cl_min_len + ISN_SETTYPE, // set dict type to isn_arg.type.ct_type ISN_PUT, // ":put", uses isn_arg.put