aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/version.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2019-01-19 18:09:52 -0500
committerJames McCoy <jamessan@jamessan.com>2019-01-19 18:09:52 -0500
commitc2343180d74f547d99abcc3c4979a9ebb047af17 (patch)
tree53ce67c282fd0bb693905cf2e2a8c869b9999a4d /src/nvim/version.c
parentf2cc9e8826a72f4434a838d7d31239e5fe9d0a37 (diff)
downloadrneovim-c2343180d74f547d99abcc3c4979a9ebb047af17.tar.gz
rneovim-c2343180d74f547d99abcc3c4979a9ebb047af17.tar.bz2
rneovim-c2343180d74f547d99abcc3c4979a9ebb047af17.zip
Remove support for using jemalloc instead of the system allocator
There was never any investigation done to determine whether using jemalloc was actually a net benefit for nvim. It has been a portability limitation and adds another factor to consider when triaging issues.
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r--src/nvim/version.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c
index 20b71ab724..b7c9140b7f 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -62,12 +62,6 @@ static char *features[] = {
"-iconv",
#endif
-#ifdef HAVE_JEMALLOC
-"+jemalloc",
-#else
-"-jemalloc",
-#endif
-
#ifdef FEAT_TUI
"+tui",
#else