We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6425e6 commit c1f9bc0Copy full SHA for c1f9bc0
2 files changed
src/spell.c
@@ -4234,7 +4234,9 @@ did_set_spelllang(wp)
4234
if (spl_copy == NULL)
4235
goto theend;
4236
4237
+#ifdef FEAT_MBYTE
4238
wp->w_s->b_cjk = 0;
4239
+#endif
4240
4241
/* Loop over comma separated language names. */
4242
for (splp = spl_copy; *splp != NUL; )
@@ -4246,7 +4248,9 @@ did_set_spelllang(wp)
4246
4248
4247
4249
if (STRCMP(lang, "cjk") == 0)
4250
{
4251
4252
wp->w_s->b_cjk = 1;
4253
4254
continue;
4255
}
4256
src/version.c
@@ -738,6 +738,8 @@ static char *(features[]) =
738
739
static int included_patches[] =
740
{ /* Add new patch number below this line */
741
+/**/
742
+ 92,
743
/**/
744
91,
745
0 commit comments