1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-05 07:01:11 -08:00

* xterm.c (x_draw_stretch_glyph_string): Reset clipping. (Bug#16932)

This commit is contained in:
YAMAMOTO Mitsuharu 2014-03-04 20:02:36 +09:00
parent 87132570ad
commit a55130ca10
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2014-03-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* xterm.c (x_draw_stretch_glyph_string): Reset clipping.
(Bug#16932)
2014-03-04 Michal Nazarewicz <mina86@mina86.com>
* cmds.c (delete-char): Update docstring pointing out that the

View file

@ -2501,6 +2501,8 @@ x_draw_stretch_glyph_string (struct glyph_string *s)
XFillRectangle (s->display, s->window, gc, x, y, w, h);
XSetForeground (s->display, gc, xgcv.foreground);
}
XSetClipMask (s->display, gc, None);
}
}
else if (!s->background_filled_p)