From: Karl Heuer Date: Sat, 16 Apr 1994 06:58:38 +0000 (+0000) Subject: (make_lispy_movement): Don't clip. X-Git-Tag: emacs-19.34~8928 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f02256ef9a904d39894d919387f3e04a6fafb100;p=emacs.git (make_lispy_movement): Don't clip. --- diff --git a/src/keyboard.c b/src/keyboard.c index c74b151c779..0f86fa9f477 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -2735,7 +2735,7 @@ make_lispy_movement (frame, bar_window, part, x, y, time) Lisp_Object posn; int column, row; - pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row, 0, 0); + pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row, 0, 1); if (frame) window = window_from_coordinates (frame, column, row, &area);