# HG changeset patch # User Bram Moolenaar # Date 1610316004 -3600 # Node ID cd6b9bc51d58275b1c27c690479111e745f1f8f4 # Parent 077dbcce5b5935e14050babf71f20d42762feaa6 patch 8.2.2326: build error with +eval feature but without +spell Commit: https://github.com/vim/vim/commit/086ae06862077ba228fcae777f2a0b41416c11bb Author: Bram Moolenaar Date: Sun Jan 10 22:56:36 2021 +0100 patch 8.2.2326: build error with +eval feature but without +spell Problem: Build error with +eval feature but without +spell. Solution: Adjust #ifdef. (John Marriott) diff --git a/src/mbyte.c b/src/mbyte.c --- a/src/mbyte.c +++ b/src/mbyte.c @@ -4299,7 +4299,7 @@ mb_charlen(char_u *str) return count; } -#if defined(FEAT_SPELL) || defined(PROTO) +#if (defined(FEAT_SPELL) || defined(FEAT_EVAL)) || defined(PROTO) /* * Like mb_charlen() but for a string with specified length. */ 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 */ /**/ + 2326, +/**/ 2325, /**/ 2324,