# HG changeset patch # User Gerd Moellmann # Date 989845403 0 # Node ID 4a800a01388bdff4faf446499a814edc7be7dff4 # Parent 729181f245b93f86aac93d211ad1f0e789ea9381 (x_draw_glyphs): Fix compuation of rightmost x for full-width rows. diff -r 729181f245b9 -r 4a800a01388b src/xterm.c --- a/src/xterm.c Mon May 14 12:58:29 2001 +0000 +++ b/src/xterm.c Mon May 14 13:03:23 2001 +0000 @@ -5094,7 +5094,7 @@ } x += FRAME_INTERNAL_BORDER_WIDTH (f); - last_x -= FRAME_INTERNAL_BORDER_WIDTH (f); + last_x += FRAME_INTERNAL_BORDER_WIDTH (f); } else {