Skip to content

Commit 086ae06

Browse files
committed
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)
1 parent 75ab91f commit 086ae06

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/mbyte.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4299,7 +4299,7 @@ mb_charlen(char_u *str)
42994299
return count;
43004300
}
43014301

4302-
#if defined(FEAT_SPELL) || defined(PROTO)
4302+
#if (defined(FEAT_SPELL) || defined(FEAT_EVAL)) || defined(PROTO)
43034303
/*
43044304
* Like mb_charlen() but for a string with specified length.
43054305
*/

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2326,
753755
/**/
754756
2325,
755757
/**/

0 commit comments

Comments
 (0)