mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.1.0791: a few compiler warnings on VMS
Problem: A few compiler warnings on VMS. Solution: Remove type cast. Adjust #ifdef. (Zoltan Arpadffy)
This commit is contained in:
parent
57a6bf0567
commit
563bbeabcc
@ -1935,7 +1935,7 @@ get_x11_windis(void)
|
|||||||
alarm(0);
|
alarm(0);
|
||||||
signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
|
signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
|
||||||
if (p_verbose > 0 && sig_alarm_called)
|
if (p_verbose > 0 && sig_alarm_called)
|
||||||
verb_msg((char_u *)_("Opening the X display timed out"));
|
verb_msg(_("Opening the X display timed out"));
|
||||||
#endif
|
#endif
|
||||||
if (x11_display != NULL)
|
if (x11_display != NULL)
|
||||||
{
|
{
|
||||||
|
@ -256,7 +256,7 @@ void ch_log(channel_T *ch, const char *fmt, ...)
|
|||||||
# endif
|
# endif
|
||||||
|
|
||||||
# if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
|
# if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
|
||||||
# if defined(UNIX) || defined(MACOS_X)
|
# if defined(UNIX) || defined(MACOS_X) || defined(VMS)
|
||||||
# include "pty.pro"
|
# include "pty.pro"
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
|
@ -791,6 +791,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 */
|
||||||
|
/**/
|
||||||
|
791,
|
||||||
/**/
|
/**/
|
||||||
790,
|
790,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user