diff options
author | erw7 <erw7.github@gmail.com> | 2019-11-16 12:59:07 +0900 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-01-17 11:36:28 +0100 |
commit | 59ae38a9196d596e2fe511eeb216e314bfc3dac7 (patch) | |
tree | 4961298db8770f0db816f4d72f5fd31d416b3181 /src/nvim/main.c | |
parent | b25e42f7989aa0a071e3132ce992ab9a6251594e (diff) | |
download | rneovim-59ae38a9196d596e2fe511eeb216e314bfc3dac7.tar.gz rneovim-59ae38a9196d596e2fe511eeb216e314bfc3dac7.tar.bz2 rneovim-59ae38a9196d596e2fe511eeb216e314bfc3dac7.zip |
Change to use TriState instead of bool
Co-Authored-By: Justin M. Keyes <justinkz@gmail.com>
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 33c0466e1a..c7011f4f4e 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -46,9 +46,6 @@ #include "nvim/option.h" #include "nvim/os_unix.h" #include "nvim/os/os_defs.h" -#ifdef WIN32 -# include "nvim/os/os_win_conpty.h" -#endif #include "nvim/path.h" #include "nvim/profile.h" #include "nvim/popupmnu.h" @@ -229,9 +226,6 @@ void early_init(void) init_signs(); ui_comp_syn_init(); -#ifdef WIN32 - os_dyn_conpty_init(); -#endif } #ifdef MAKE_LIB |