mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.4.342
Problem: Clang gives warnings. Solution: Add an else block. (Dominique Pelle)
This commit is contained in:
parent
e8a3492548
commit
db5ffaab5a
@ -1193,11 +1193,13 @@ drawBalloon(beval)
|
|||||||
XmFontList fl;
|
XmFontList fl;
|
||||||
|
|
||||||
fl = gui_motif_fontset2fontlist(&gui.tooltip_fontset);
|
fl = gui_motif_fontset2fontlist(&gui.tooltip_fontset);
|
||||||
if (fl != NULL)
|
if (fl == NULL)
|
||||||
{
|
{
|
||||||
XmStringExtent(fl, s, &w, &h);
|
XmStringFree(s);
|
||||||
XmFontListFree(fl);
|
return;
|
||||||
}
|
}
|
||||||
|
XmStringExtent(fl, s, &w, &h);
|
||||||
|
XmFontListFree(fl);
|
||||||
}
|
}
|
||||||
w += gui.border_offset << 1;
|
w += gui.border_offset << 1;
|
||||||
h += gui.border_offset << 1;
|
h += gui.border_offset << 1;
|
||||||
|
@ -734,6 +734,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 */
|
||||||
|
/**/
|
||||||
|
342,
|
||||||
/**/
|
/**/
|
||||||
341,
|
341,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user