diff options
Diffstat (limited to 'src/nvim/strings.c')
-rw-r--r-- | src/nvim/strings.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c index d8a14c1883..70fa43be2c 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -500,8 +500,6 @@ 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) /* * Return TRUE if string "s" contains a non-ASCII character (128 or higher). * When "s" is NULL FALSE is returned. @@ -516,7 +514,6 @@ int has_non_ascii(char_u *s) return TRUE; return FALSE; } -#endif /* * Concatenate two strings and return the result in allocated memory. |