diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-04-22 16:34:30 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-24 10:38:42 -0300 |
commit | bf9aeda01c0c134002d12eebaf1ffec7003417d6 (patch) | |
tree | b499d0a1a6885995b27bd6f98050e727f80923f5 /src/os_unix.c | |
parent | 3f38c384efe5b81c886440de2fb352cac6e581fa (diff) | |
download | rneovim-bf9aeda01c0c134002d12eebaf1ffec7003417d6.tar.gz rneovim-bf9aeda01c0c134002d12eebaf1ffec7003417d6.tar.bz2 rneovim-bf9aeda01c0c134002d12eebaf1ffec7003417d6.zip |
Remove mch_screenmode, inline EMSG into ex_mode()
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index b361b5031a..8293e6508f 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -890,17 +890,6 @@ void check_mouse_termcode() } /* - * set screen mode, always fails. - */ -int mch_screenmode(arg) -char_u *arg; -{ - EMSG(_(e_screenmode)); - return FAIL; -} - - -/* * Try to get the current window size: * 1. with an ioctl(), most accurate method * 2. from the environment variables LINES and COLUMNS |