diff options
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/charset.c b/src/charset.c index 4c9784a07b..31fa78d30c 100644 --- a/src/charset.c +++ b/src/charset.c @@ -1661,11 +1661,6 @@ char_u* skiptowhite(char_u *p) return p; } -#if defined(FEAT_LISTCMDS) \ - || defined(FEAT_SIGNS) \ - || defined(FEAT_SNIFF) \ - || defined(PROTO) - /// skiptowhite_esc: Like skiptowhite(), but also skip escaped chars /// /// @param p @@ -1682,9 +1677,6 @@ char_u* skiptowhite_esc(char_u *p) return p; } -#endif // if defined(FEAT_LISTCMDS) || defined(FEAT_SIGNS) - // || defined(FEAT_SNIFF) || defined(PROTO) - /// Getdigits: Get a number from a string and skip over it. /// /// Note: the argument is a pointer to a char_u pointer! |