1
0
forked from aniani/vim

updated for version 7.1-225

This commit is contained in:
Bram Moolenaar 2008-01-13 15:31:00 +00:00
parent c4cd38f369
commit a6c2c91d32
2 changed files with 5 additions and 3 deletions

View File

@ -6145,9 +6145,9 @@ do_xterm_trace()
if (xterm_trace == 1)
{
/* Get the hints just before tracking starts. The font size might
* have changed recently */
XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints);
if (!(got_hints & PResizeInc)
* have changed recently. */
if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
|| !(got_hints & PResizeInc)
|| xterm_hints.width_inc <= 1
|| xterm_hints.height_inc <= 1)
{

View File

@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
225,
/**/
224,
/**/