aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/search.c
diff options
context:
space:
mode:
authorHinidu <hinidu@gmail.com>2014-04-09 08:05:01 +0300
committerJustin M. Keyes <justinkz@gmail.com>2014-05-28 13:08:54 -0400
commit99fec73d1ff6ff891c6087eda33dbb2e8e37cdb6 (patch)
tree4d95c53f2e57c2bbfd23b128c7dd49c12658af61 /src/nvim/search.c
parentdf4127919a04f5dad461159bb18dec73a32c2f1e (diff)
downloadrneovim-99fec73d1ff6ff891c6087eda33dbb2e8e37cdb6.tar.gz
rneovim-99fec73d1ff6ff891c6087eda33dbb2e8e37cdb6.tar.bz2
rneovim-99fec73d1ff6ff891c6087eda33dbb2e8e37cdb6.zip
Remove FEAT_CINDENT
C code indenting
Diffstat (limited to 'src/nvim/search.c')
-rw-r--r--src/nvim/search.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/search.c b/src/nvim/search.c
index fc741955da..56f9355949 100644
--- a/src/nvim/search.c
+++ b/src/nvim/search.c
@@ -3941,8 +3941,6 @@ static int is_one_char(char_u *pattern)
return result;
}
-#if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \
- || defined(PROTO)
/*
* return TRUE if line 'lnum' is empty or has white chars only.
*/
@@ -3953,7 +3951,6 @@ int linewhite(linenr_T lnum)
p = skipwhite(ml_get(lnum));
return *p == NUL;
}
-#endif
/*
* Find identifiers or defines in included files.