diff options
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index bcb35e297b..2595e2e5a2 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -130,26 +130,6 @@ void mch_suspend(void) #endif } -void mch_init(void) -{ - Columns = 80; - Rows = 24; - - // Prevent buffering output. - // Output gets explicitly buffered and flushed by out_flush() at times like, - // for example, when the user presses a key. Without this line, vim will not - // render the screen correctly. - setbuf(stdout, NULL); - - out_flush(); - -#ifdef MACOS_CONVERT - mac_conv_init(); -#endif - - event_init(); -} - static int get_x11_title(int test_only) { return FALSE; |