diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-09 07:55:45 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 13:08:54 -0400 |
commit | ac116088af763b0e6753f973513a1aafa5700cb2 (patch) | |
tree | 38eab2d7735a54a40d251b27f07ea180835cd2f3 /src/nvim/strings.c | |
parent | 4e0fc575d77017694622d8d9048026059c8a3835 (diff) | |
download | rneovim-ac116088af763b0e6753f973513a1aafa5700cb2.tar.gz rneovim-ac116088af763b0e6753f973513a1aafa5700cb2.tar.bz2 rneovim-ac116088af763b0e6753f973513a1aafa5700cb2.zip |
Remove FEAT_QUICKFIX
Diffstat (limited to 'src/nvim/strings.c')
-rw-r--r-- | src/nvim/strings.c | 2 |
1 files changed, 0 insertions, 2 deletions
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. |