Skip to content

Commit b77c598

Browse files
yegappanchrisbra
authored andcommitted
patch 9.1.1032: link error when FEAT_SPELL not defined
Problem: link error when FEAT_SPELL not defined (after v9.1.1016, John Marriott) Solution: adjust ifdefs (Yegappan Lakshmanan) closes: #16468 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent 5e9aaed commit b77c598

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
@@ -4355,7 +4355,7 @@ utf_find_illegal(void)
43554355
convert_setup(&vimconv, NULL, NULL);
43564356
}
43574357

4358-
#if defined(FEAT_GUI_GTK) || defined(FEAT_SPELL) || defined(PROTO)
4358+
#if defined(FEAT_GUI_GTK) || defined(FEAT_SPELL) || defined(FEAT_EVAL) || defined(PROTO)
43594359
/*
43604360
* Return TRUE if string "s" is a valid utf-8 string.
43614361
* When "end" is NULL stop at the first NUL. Otherwise stop at "end".

src/version.c

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

705705
static int included_patches[] =
706706
{ /* Add new patch number below this line */
707+
/**/
708+
1032,
707709
/**/
708710
1031,
709711
/**/

0 commit comments

Comments
 (0)