aboutsummaryrefslogtreecommitdiffstats
path: root/src/xwidget.c
diff options
context:
space:
mode:
authorJoakim Verona2011-07-27 11:34:17 +0200
committerJoakim Verona2011-07-27 11:34:17 +0200
commit0527c8f155cf94a1f6db9bd84b1d86501259a332 (patch)
tree38589da0a3e92ff8681fda0897b8a7d47c20d593 /src/xwidget.c
parent460c547e0d83da81e503fe475f168c168850f49b (diff)
downloademacs-0527c8f155cf94a1f6db9bd84b1d86501259a332.tar.gz
emacs-0527c8f155cf94a1f6db9bd84b1d86501259a332.zip
futile allocation hacks
Diffstat (limited to 'src/xwidget.c')
-rw-r--r--src/xwidget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xwidget.c b/src/xwidget.c
index f1c4e0e35cb..c8e025db579 100644
--- a/src/xwidget.c
+++ b/src/xwidget.c
@@ -603,7 +603,7 @@ x_draw_xwidget_glyph_string (struct glyph_string *s)
603 //this happens when an emacs window border moves across a widget winow 603 //this happens when an emacs window border moves across a widget winow
604 moved = (xv->x + xv->clip_left != x+clip_left) 604 moved = (xv->x + xv->clip_left != x+clip_left)
605 || ((xv->y + xv->clip_top)!= (y+clip_top)); 605 || ((xv->y + xv->clip_top)!= (y+clip_top));
606 //if(moved) printf ("live xwidget moved: id:%d (%d,%d)->(%d,%d) y+clip_top:%d\n", xww->id, xv->x, xv->y, x, y, y + clip_top); 606 if(moved) printf ("lxwidget moved: id:%d (%d,%d)->(%d,%d) y+clip_top:%d\n", xww, xv->x, xv->y, x, y, y + clip_top);
607 xv->x = x; 607 xv->x = x;
608 xv->y = y; 608 xv->y = y;
609 if (moved) //has it moved? 609 if (moved) //has it moved?