We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb828d0 commit 40d3f13Copy full SHA for 40d3f13
2 files changed
src/option.c
@@ -5822,6 +5822,7 @@ set_string_option(
5822
return r;
5823
}
5824
5825
+#if defined(FEAT_KEYMAP) || defined(FEAT_AUTOCMD) || defined(FEAT_SYN_HL)
5826
/*
5827
* Return TRUE if "val" is a valid 'filetype' name.
5828
* Also used for 'syntax' and 'keymap'.
@@ -5836,6 +5837,7 @@ valid_filetype(char_u *val)
5836
5837
return FALSE;
5838
return TRUE;
5839
5840
+#endif
5841
5842
5843
* Handle string options that need some action to perform when changed.
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 65,
769
/**/
770
64,
771
0 commit comments