mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
Merge branch 'master' into expression-parser
This commit is contained in:
@@ -30,8 +30,8 @@
|
||||
// for ":version", ":intro", and "nvim --version"
|
||||
#ifndef NVIM_VERSION_MEDIUM
|
||||
#define NVIM_VERSION_MEDIUM "v" STR(NVIM_VERSION_MAJOR)\
|
||||
"." STR(NVIM_VERSION_MINOR) "." STR(NVIM_VERSION_PATCH)\
|
||||
NVIM_VERSION_PRERELEASE
|
||||
"." STR(NVIM_VERSION_MINOR) "." STR(NVIM_VERSION_PATCH)\
|
||||
NVIM_VERSION_PRERELEASE
|
||||
#endif
|
||||
#define NVIM_VERSION_LONG "NVIM " NVIM_VERSION_MEDIUM
|
||||
|
||||
@@ -47,39 +47,40 @@ char *version_cflags = "Compilation: " NVIM_VERSION_CFLAGS;
|
||||
|
||||
static char *features[] = {
|
||||
#ifdef HAVE_ACL
|
||||
"+acl",
|
||||
"+acl",
|
||||
#else
|
||||
"-acl",
|
||||
"-acl",
|
||||
#endif
|
||||
|
||||
#if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
|
||||
# ifdef DYNAMIC_ICONV
|
||||
"+iconv/dyn",
|
||||
"+iconv/dyn",
|
||||
# else
|
||||
"+iconv",
|
||||
"+iconv",
|
||||
# endif
|
||||
#else
|
||||
"-iconv",
|
||||
"-iconv",
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_JEMALLOC
|
||||
"+jemalloc",
|
||||
"+jemalloc",
|
||||
#else
|
||||
"-jemalloc",
|
||||
"-jemalloc",
|
||||
#endif
|
||||
|
||||
#ifdef FEAT_TUI
|
||||
"+tui",
|
||||
"+tui",
|
||||
#else
|
||||
"-tui",
|
||||
"-tui",
|
||||
#endif
|
||||
NULL
|
||||
NULL
|
||||
};
|
||||
|
||||
// clang-format off
|
||||
static const int included_patches[] = {
|
||||
1229,
|
||||
1230,
|
||||
1229,
|
||||
1206,
|
||||
// 1026,
|
||||
1025,
|
||||
1024,
|
||||
@@ -814,12 +815,12 @@ static const int included_patches[] = {
|
||||
// 295,
|
||||
294,
|
||||
// 293,
|
||||
// 292,
|
||||
292,
|
||||
291,
|
||||
290,
|
||||
// 289,
|
||||
289,
|
||||
// 288 NA
|
||||
// 287,
|
||||
287,
|
||||
// 286,
|
||||
// 285 NA
|
||||
// 284 NA
|
||||
|
Reference in New Issue
Block a user