From 4e0fc575d77017694622d8d9048026059c8a3835 Mon Sep 17 00:00:00 2001 From: Hinidu Date: Wed, 9 Apr 2014 00:07:24 +0300 Subject: Remove FEAT_MBYTE Multi-byte character handling. --- src/nvim/strings.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/nvim/strings.c') 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. -- cgit From ac116088af763b0e6753f973513a1aafa5700cb2 Mon Sep 17 00:00:00 2001 From: Hinidu Date: Wed, 9 Apr 2014 07:55:45 +0300 Subject: Remove FEAT_QUICKFIX --- src/nvim/strings.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/nvim/strings.c') diff --git a/src/nvim/strings.c b/src/nvim/strings.c index e90909314a..70fa43be2c 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -500,7 +500,6 @@ void sort_strings(char_u **files, int count) qsort((void *)files, (size_t)count, sizeof(char_u *), sort_compare); } -#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. @@ -515,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. -- cgit