aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/version.c
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2015-02-16 23:42:25 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2015-02-16 23:42:25 -0300
commit0429857689ba98356bc80d01ebd540fe861e8db2 (patch)
treeb4d039dba9e18a041b00cfe31d954931a97241dd /src/nvim/version.c
parentaf46564dd6e7e709f269f041f749dc312d9c3773 (diff)
parent40b7990553997d9eabb21b746346356016b373c5 (diff)
downloadrneovim-0429857689ba98356bc80d01ebd540fe861e8db2.tar.gz
rneovim-0429857689ba98356bc80d01ebd540fe861e8db2.tar.bz2
rneovim-0429857689ba98356bc80d01ebd540fe861e8db2.zip
Merge PR #1820 'Reimplement builtin terminal UI with termkey/unibilium'
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r--src/nvim/version.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c
index 748e2ded07..02d5f66260 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -136,21 +136,6 @@ static char *(features[]) = {
"+tag_binary",
"+tag_old_static",
"-tag_any_white",
-#if defined(UNIX)
-
- // only Unix can have terminfo instead of termcap
-# ifdef TERMINFO
- "+terminfo",
-# else // ifdef TERMINFO
- "-terminfo",
-# endif // ifdef TERMINFO
-#else // unix always includes termcap support
-# ifdef HAVE_TGETENT
- "+tgetent",
-# else // ifdef HAVE_TGETENT
- "-tgetent",
-# endif // ifdef HAVE_TGETENT
-#endif // if defined(UNIX)
"+termresponse",
"+textobjects",
"+title",
@@ -813,19 +798,6 @@ static char *(extra_patches[]) = {
NULL
};
-int highest_patch(void)
-{
- int i;
- int h = 0;
-
- for (i = 0; included_patches[i] != 0; ++i) {
- if (included_patches[i] > h) {
- h = included_patches[i];
- }
- }
- return h;
-}
-
/// Checks whether patch `n` has been included.
///
/// @param n The patch number.