Mercurial > emacs
changeset 28918:e42cd428f056
(coordinates_in_window): Subtract 1 when computing right_x.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Mon, 15 May 2000 14:51:32 +0000 |
parents | 845292e36d62 |
children | 4f53731e6965 |
files | src/window.c |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/window.c Mon May 15 14:50:12 2000 +0000 +++ b/src/window.c Mon May 15 14:51:32 2000 +0000 @@ -458,10 +458,12 @@ int left_x, right_x, top_y, bottom_y; int flags_area_width = FRAME_LEFT_FLAGS_AREA_WIDTH (f); + /* In what's below, we subtract 1 when computing right_x because we + want the rightmost pixel, which is given by left_pixel+width-1. */ if (w->pseudo_window_p) { left_x = 0; - right_x = XFASTINT (w->width) * CANON_Y_UNIT (f); + right_x = XFASTINT (w->width) * CANON_Y_UNIT (f) - 1; top_y = WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w); bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w); } @@ -469,7 +471,7 @@ { left_x = (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X (w) - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f)); - right_x = WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X (w); + right_x = WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X (w) - 1; top_y = (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w) - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f)); bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w);