comparison src/os_mswin.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 44b855153d8e
children aadd1cae2ff5
comparison
equal deleted inserted replaced
19130:d329cfe7de68 19131:1fe99999625c
740 } 740 }
741 # endif 741 # endif
742 #endif 742 #endif
743 743
744 744
745 /*
746 * set screen mode, always fails.
747 */
748 int
749 mch_screenmode(char_u *arg UNUSED)
750 {
751 emsg(_(e_screenmode));
752 return FAIL;
753 }
754
755
756 #if defined(FEAT_LIBCALL) || defined(PROTO) 745 #if defined(FEAT_LIBCALL) || defined(PROTO)
757 /* 746 /*
758 * Call a DLL routine which takes either a string or int param 747 * Call a DLL routine which takes either a string or int param
759 * and returns an allocated string. 748 * and returns an allocated string.
760 * Return OK if it worked, FAIL if not. 749 * Return OK if it worked, FAIL if not.