aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-05-14 13:03:23 +0000
committerGerd Moellmann2001-05-14 13:03:23 +0000
commit98fedd9707a8c2e69613fc8e0a5b0edb73a77a09 (patch)
tree679a1fb31898de2f874aba6945449a902f37cdff /src
parentfa82947011d0a00210c2e52d0792a6fc7b826796 (diff)
downloademacs-98fedd9707a8c2e69613fc8e0a5b0edb73a77a09.tar.gz
emacs-98fedd9707a8c2e69613fc8e0a5b0edb73a77a09.zip
(x_draw_glyphs): Fix compuation of rightmost x for
full-width rows.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 65138279126..056514d7096 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -5094,7 +5094,7 @@ x_draw_glyphs (w, x, row, area, start, end, hl, real_start, real_end,
5094 } 5094 }
5095 5095
5096 x += FRAME_INTERNAL_BORDER_WIDTH (f); 5096 x += FRAME_INTERNAL_BORDER_WIDTH (f);
5097 last_x -= FRAME_INTERNAL_BORDER_WIDTH (f); 5097 last_x += FRAME_INTERNAL_BORDER_WIDTH (f);
5098 } 5098 }
5099 else 5099 else
5100 { 5100 {