mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.0-242
This commit is contained in:
@@ -1140,8 +1140,13 @@ gui_mch_set_parent(char *title)
|
|||||||
static void
|
static void
|
||||||
ole_error(char *arg)
|
ole_error(char *arg)
|
||||||
{
|
{
|
||||||
EMSG2(_("E243: Argument not supported: \"-%s\"; Use the OLE version."),
|
char buf[IOSIZE];
|
||||||
arg);
|
|
||||||
|
/* Can't use EMSG() here, we have not finished initialisation yet. */
|
||||||
|
vim_snprintf(buf, IOSIZE,
|
||||||
|
_("E243: Argument not supported: \"-%s\"; Use the OLE version."),
|
||||||
|
arg);
|
||||||
|
mch_errmsg(buf);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -3164,8 +3169,9 @@ gui_mch_dialog(
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Check button names. A long one will make the dialog wider.
|
* Check button names. A long one will make the dialog wider.
|
||||||
|
* When called early (-register error message) p_go isn't initialized.
|
||||||
*/
|
*/
|
||||||
vertical = (vim_strchr(p_go, GO_VERTICAL) != NULL);
|
vertical = (p_go != NULL && vim_strchr(p_go, GO_VERTICAL) != NULL);
|
||||||
if (!vertical)
|
if (!vertical)
|
||||||
{
|
{
|
||||||
// Place buttons horizontally if they fit.
|
// Place buttons horizontally if they fit.
|
||||||
|
@@ -666,6 +666,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 */
|
||||||
|
/**/
|
||||||
|
242,
|
||||||
/**/
|
/**/
|
||||||
241,
|
241,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user