diff options
Diffstat (limited to 'src/nvim/strings.c')
| -rw-r--r-- | src/nvim/strings.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c index d8a14c1883..e90909314a 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -500,8 +500,7 @@ void sort_strings(char_u **files, int count) qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare); } -#if (defined(FEAT_MBYTE) && defined(FEAT_QUICKFIX)) \ - || defined(FEAT_SPELL) || defined(PROTO) +#if defined(FEAT_QUICKFIX) || defined(FEAT_SPELL) || defined(PROTO) /* * Return TRUE if string "s" contains a non-ASCII character (128 or higher). * When "s" is NULL FALSE is returned. |