aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorHinidu <hinidu@gmail.com>2014-04-11 23:29:16 +0300
committerJustin M. Keyes <justinkz@gmail.com>2014-05-28 13:08:54 -0400
commit9d6c5de4f1cf92a3e145a7c76529f8f80bb24551 (patch)
treed2590fb3fc456ec84b13b8c4f95ca75e7646197f /src/nvim/buffer.c
parent7c188b549844b7834e2b7f55749eaddef9307431 (diff)
downloadrneovim-9d6c5de4f1cf92a3e145a7c76529f8f80bb24551.tar.gz
rneovim-9d6c5de4f1cf92a3e145a7c76529f8f80bb24551.tar.bz2
rneovim-9d6c5de4f1cf92a3e145a7c76529f8f80bb24551.zip
Remove FEAT_CMDL_INFO
'showcmd' and 'ruler' options
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 5942f51df4..ee606d9e80 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -3510,8 +3510,6 @@ build_stl_str_hl (
return width;
}
-#if defined(FEAT_STL_OPT) || defined(FEAT_CMDL_INFO) \
- || defined(FEAT_GUI_TABLINE) || defined(PROTO)
/*
* Get relative cursor position in window into "buf[buflen]", in the form 99%,
* using "Top", "Bot" or "All" when appropriate.
@@ -3534,7 +3532,6 @@ void get_rel_pos(win_T *wp, char_u *buf, int buflen)
? (int)(above / ((above + below) / 100L))
: (int)(above * 100L / (above + below)));
}
-#endif
/*
* Append (file 2 of 8) to "buf[buflen]", if editing more than one file.