# HG changeset patch # User Bram Moolenaar # Date 1609599603 -3600 # Node ID 09868c86a97fefdf75d8760f26df42dd88ac7110 # Parent d050bf102b3784a084b8fd1d95c4dffe8366ce3d patch 8.2.2273: build failure Commit: https://github.com/vim/vim/commit/628c102d128b4e376916ba38b883eb9ae9f41f31 Author: Bram Moolenaar Date: Sat Jan 2 15:49:28 2021 +0100 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 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2273, +/**/ 2272, /**/ 2271, diff --git a/src/vim9.h b/src/vim9.h --- 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