comparison src/os_unix.c @ 19131:1fe99999625c v8.2.0125

patch 8.2.0125: :mode no longer works for any system Commit: https://github.com/vim/vim/commit/3c71aec6966da0ebefc451ded4fbc43f426654f3 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 17 19:32:20 2020 +0100 patch 8.2.0125: :mode no longer works for any system Problem: :mode no longer works for any system. Solution: Always give an error message.
author Bram Moolenaar <Bram@vim.org>
date Fri, 17 Jan 2020 19:45:04 +0100
parents 8dabdfc7c799
children 2ef19eed524a
comparison
equal deleted inserted replaced
19130:d329cfe7de68 19131:1fe99999625c
3933 else 3933 else
3934 { 3934 {
3935 del_mouse_termcode(KS_SGR_MOUSE); 3935 del_mouse_termcode(KS_SGR_MOUSE);
3936 del_mouse_termcode(KS_SGR_MOUSE_RELEASE); 3936 del_mouse_termcode(KS_SGR_MOUSE_RELEASE);
3937 } 3937 }
3938 }
3939
3940 /*
3941 * set screen mode, always fails.
3942 */
3943 int
3944 mch_screenmode(char_u *arg UNUSED)
3945 {
3946 emsg(_(e_screenmode));
3947 return FAIL;
3948 } 3938 }
3949 3939
3950 #ifndef VMS 3940 #ifndef VMS
3951 3941
3952 /* 3942 /*