mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
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.
This commit is contained in:
@@ -5927,7 +5927,7 @@ ex_mode(exarg_T *eap)
|
|||||||
if (*eap->arg == NUL)
|
if (*eap->arg == NUL)
|
||||||
shell_resized();
|
shell_resized();
|
||||||
else
|
else
|
||||||
mch_screenmode(eap->arg);
|
emsg(_(e_screenmode));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -988,16 +988,6 @@ mch_settmode(int tmode)
|
|||||||
mch_errmsg(_("cannot change console mode ?!\n"));
|
mch_errmsg(_("cannot change console mode ?!\n"));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* set screen mode, always fails.
|
|
||||||
*/
|
|
||||||
int
|
|
||||||
mch_screenmode(char_u *arg)
|
|
||||||
{
|
|
||||||
emsg(_(e_screenmode));
|
|
||||||
return FAIL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Code for this routine came from the following :
|
* Code for this routine came from the following :
|
||||||
*
|
*
|
||||||
|
@@ -742,17 +742,6 @@ mch_check_messages(void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* set screen mode, always fails.
|
|
||||||
*/
|
|
||||||
int
|
|
||||||
mch_screenmode(char_u *arg UNUSED)
|
|
||||||
{
|
|
||||||
emsg(_(e_screenmode));
|
|
||||||
return FAIL;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#if defined(FEAT_LIBCALL) || defined(PROTO)
|
#if defined(FEAT_LIBCALL) || defined(PROTO)
|
||||||
/*
|
/*
|
||||||
* Call a DLL routine which takes either a string or int param
|
* Call a DLL routine which takes either a string or int param
|
||||||
|
@@ -3937,16 +3937,6 @@ check_mouse_termcode(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* set screen mode, always fails.
|
|
||||||
*/
|
|
||||||
int
|
|
||||||
mch_screenmode(char_u *arg UNUSED)
|
|
||||||
{
|
|
||||||
emsg(_(e_screenmode));
|
|
||||||
return FAIL;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifndef VMS
|
#ifndef VMS
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@@ -32,7 +32,6 @@ int mch_nodetype(char_u *name);
|
|||||||
void mch_early_init(void);
|
void mch_early_init(void);
|
||||||
void mch_exit(int r);
|
void mch_exit(int r);
|
||||||
void mch_settmode(int tmode);
|
void mch_settmode(int tmode);
|
||||||
int mch_screenmode(char_u *arg);
|
|
||||||
int mch_get_shellsize(void);
|
int mch_get_shellsize(void);
|
||||||
void mch_set_shellsize(void);
|
void mch_set_shellsize(void);
|
||||||
void mch_new_shellsize(void);
|
void mch_new_shellsize(void);
|
||||||
|
@@ -19,7 +19,6 @@ void display_errors(void);
|
|||||||
int mch_has_exp_wildcard(char_u *p);
|
int mch_has_exp_wildcard(char_u *p);
|
||||||
int mch_has_wildcard(char_u *p);
|
int mch_has_wildcard(char_u *p);
|
||||||
int mch_chdir(char *path);
|
int mch_chdir(char *path);
|
||||||
int mch_screenmode(char_u *arg);
|
|
||||||
int mch_icon_load(HANDLE *iconp);
|
int mch_icon_load(HANDLE *iconp);
|
||||||
int mch_libcall(char_u *libname, char_u *funcname, char_u *argstring, int argint, char_u **string_result, int *number_result);
|
int mch_libcall(char_u *libname, char_u *funcname, char_u *argstring, int argint, char_u **string_result, int *number_result);
|
||||||
void DumpPutS(const char *psz);
|
void DumpPutS(const char *psz);
|
||||||
|
@@ -54,7 +54,6 @@ int get_tty_info(int fd, ttyinfo_T *info);
|
|||||||
void mch_setmouse(int on);
|
void mch_setmouse(int on);
|
||||||
void mch_bevalterm_changed(void);
|
void mch_bevalterm_changed(void);
|
||||||
void check_mouse_termcode(void);
|
void check_mouse_termcode(void);
|
||||||
int mch_screenmode(char_u *arg);
|
|
||||||
int mch_get_shellsize(void);
|
int mch_get_shellsize(void);
|
||||||
int mch_report_winsize(int fd, int rows, int cols);
|
int mch_report_winsize(int fd, int rows, int cols);
|
||||||
void mch_set_shellsize(void);
|
void mch_set_shellsize(void);
|
||||||
|
@@ -742,6 +742,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
125,
|
||||||
/**/
|
/**/
|
||||||
124,
|
124,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user