aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/window.c6
2 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 52d70fdaa90..fe4b1abaddf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12008-11-20 Martin Rudalics <rudalics@gmx.at>
2
3 * window.c (coordinates_in_window): Don't return
4 ON_VERTICAL_BORDER for the rightmost position of a mode/header
5 line when the window is not the rightmost one. (Bug#1372)
6
12008-11-16 Ben North <ben@redfrontdoor.org> (tiny change) 72008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
2 8
3 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type. 9 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
diff --git a/src/window.c b/src/window.c
index d770822c28d..c74b163cb9f 100644
--- a/src/window.c
+++ b/src/window.c
@@ -774,7 +774,11 @@ coordinates_in_window (w, x, y)
774 } 774 }
775 else 775 else
776 { 776 {
777 if (eabs (*x - x1) < grabbable_width) 777 /* Make sure we're not at the rightmost position of a
778 mode-/header-line and there's yet another window on
779 the right. (Bug#1372) */
780 if ((WINDOW_RIGHTMOST_P (w) || *x < x1)
781 && eabs (*x - x1) < grabbable_width)
778 { 782 {
779 /* Convert X and Y to window relative coordinates. 783 /* Convert X and Y to window relative coordinates.
780 Vertical border is at the right edge of window. */ 784 Vertical border is at the right edge of window. */