Mercurial > emacs
changeset 90553:0265187804a5
(x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
Clip to src->width, etc (not src->clip_XXX).
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 28 Jul 2006 12:40:43 +0000 |
parents | c7ca842a0366 |
children | d0351223b22a |
files | src/xterm.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xterm.c Fri Jul 28 12:08:40 2006 +0000 +++ b/src/xterm.c Fri Jul 28 12:40:43 2006 +0000 @@ -1193,9 +1193,9 @@ if (enable_font_backend) { r.x = dst->clip_x = src->x; - r.width = dst->clip_width = src->clip_width; - r.y = dst->clip_y = src->clip_y; - r.height = dst->clip_height = src->clip_height; + r.width = dst->clip_width = src->width; + r.y = dst->clip_y = src->y; + r.height = dst->clip_height = src->height; } else {