aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-07-25 17:44:33 +0000
committerRichard M. Stallman2004-07-25 17:44:33 +0000
commitab431b61cd97c306aee286644084d5e2d1923de9 (patch)
treeb82eee8e98c1bc7e518ec14ad33a75e0d9b6df7f
parent6487f669677b970c9b486cfeed6b6dff412ecec3 (diff)
downloademacs-ab431b61cd97c306aee286644084d5e2d1923de9.tar.gz
emacs-ab431b61cd97c306aee286644084d5e2d1923de9.zip
(enum window_part): Add ON_SCROLL_BAR.
-rw-r--r--src/ChangeLog6
-rw-r--r--src/dispextern.h3
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 55df91b982e..e0b34273209 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12004-07-25 Richard M. Stallman <rms@gnu.org> 12004-07-25 Richard M. Stallman <rms@gnu.org>
2 2
3 * window.c (coordinates_in_window): Return ON_SCROLL_BAR
4 instead of ON_VERTICAL_BORDER, when on scroll bar.
5 (Fcoordinates_in_window_p): Handle ON_SCROLL_BAR--return nil.
6
7 * dispextern.h (enum window_part): Add ON_SCROLL_BAR.
8
3 * window.c (Fcoordinates_in_window_p): 9 * window.c (Fcoordinates_in_window_p):
4 Take account of FRAME_INTERNAL_BORDER_WIDTH. 10 Take account of FRAME_INTERNAL_BORDER_WIDTH.
5 11
diff --git a/src/dispextern.h b/src/dispextern.h
index 10754a4c01d..0dd9f3ed428 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -99,7 +99,8 @@ enum window_part
99 ON_LEFT_FRINGE, 99 ON_LEFT_FRINGE,
100 ON_RIGHT_FRINGE, 100 ON_RIGHT_FRINGE,
101 ON_LEFT_MARGIN, 101 ON_LEFT_MARGIN,
102 ON_RIGHT_MARGIN 102 ON_RIGHT_MARGIN,
103 ON_SCROLL_BAR
103}; 104};
104 105
105/* Number of bits allocated to store fringe bitmap numbers. */ 106/* Number of bits allocated to store fringe bitmap numbers. */