diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-08-22 11:25:59 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-08-22 11:28:47 +0200 |
commit | c265fd31ab2b0307650ad94e1ea272e9360c345f (patch) | |
tree | 9ca3efcc04236190d15a418e1ff0a2ca1d4d6a1c /src/nvim/main.c | |
parent | b888018aed249174aad7586859ac5142f1a3ef10 (diff) | |
download | rneovim-c265fd31ab2b0307650ad94e1ea272e9360c345f.tar.gz rneovim-c265fd31ab2b0307650ad94e1ea272e9360c345f.tar.bz2 rneovim-c265fd31ab2b0307650ad94e1ea272e9360c345f.zip |
refactor(api): remove unneccesary indirection around handles
These things are just maps to pointers, no need to perform
a huge song and dance around it.
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 048bf877b5..9fc82a75af 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -78,7 +78,6 @@ #include "nvim/api/ui.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/helpers.h" -#include "nvim/api/private/handle.h" #include "nvim/api/private/dispatch.h" #ifndef WIN32 # include "nvim/os/pty_process_unix.h" @@ -158,7 +157,6 @@ void early_init(mparm_T *paramp) { env_init(); fs_init(); - handle_init(); eval_init(); // init global variables init_path(argv0 ? argv0 : "nvim"); init_normal_cmds(); // Init the table of Normal mode commands. |