diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2014-09-19 03:49:37 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2014-11-28 14:27:58 -0500 |
commit | 275f6e3a6b5132f814ee947da49b8899f557f0a3 (patch) | |
tree | 2de203671477fcb79cc0c5674bad97ef59bf4e83 /src/nvim/os_unix.c | |
parent | d5ea1836333f7a139cab46833feb9d35ede46d6c (diff) | |
download | rneovim-275f6e3a6b5132f814ee947da49b8899f557f0a3.tar.gz rneovim-275f6e3a6b5132f814ee947da49b8899f557f0a3.tar.bz2 rneovim-275f6e3a6b5132f814ee947da49b8899f557f0a3.zip |
mch_early_init() -> early_init().
Move general initialization functions to early_init, which simplifies
test/unit/helpers.lua, which requires all these functions.
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 21c8065642..e761145f6f 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -439,12 +439,6 @@ int mch_nodetype(char_u *name) return NODE_WRITABLE; } -void mch_early_init(void) -{ - handle_init(); - time_init(); -} - #if defined(EXITFREE) || defined(PROTO) void mch_free_mem(void) { |