aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-21 15:54:52 +0000
committerGerd Moellmann2000-07-21 15:54:52 +0000
commitc20aeb834ddd34c72cf4f538ded8f8078a768ee0 (patch)
tree735bed61e4eef9224dbdb625ec6502277919b0d6
parentf83490015c7a46bd71735bc9b81782283c958724 (diff)
downloademacs-c20aeb834ddd34c72cf4f538ded8f8078a768ee0.tar.gz
emacs-c20aeb834ddd34c72cf4f538ded8f8078a768ee0.zip
*** empty log message ***
-rw-r--r--etc/NEWS15
-rw-r--r--src/ChangeLog3
2 files changed, 14 insertions, 4 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 3a724c14805..a92f9ef0453 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2863,10 +2863,17 @@ that have a `help-echo' property.
2863 2863
2864If the value of the `help-echo' property is a function, that function 2864If the value of the `help-echo' property is a function, that function
2865is called with three arguments WINDOW, OBJECT and POSITION. WINDOW is 2865is called with three arguments WINDOW, OBJECT and POSITION. WINDOW is
2866the window in which the help was found, OBJECT is the buffer or string 2866the window in which the help was found.
2867which had the `help-echo' property. POSITION is the position within 2867
2868OBJECT under the mouse pointer. The function should return a help 2868If OBJECT is a buffer, POS is the position in the buffer where the
2869string or nil for none. 2869`help-echo' text property was found.
2870
2871If OBJECT is an overlay, that overlay has a `help-echo' property, and
2872POS is the position in the overlay's buffer under the mouse.
2873
2874If OBJECT is a string (an overlay string or a string displayed with
2875the `display' property). POS is the position in that string under the
2876mouse.
2870 2877
2871If the value of the `help-echo' property is neither a function nor a 2878If the value of the `help-echo' property is neither a function nor a
2872string, it is evaluated to obtain a help string. 2879string, it is evaluated to obtain a help string.
diff --git a/src/ChangeLog b/src/ChangeLog
index c174013452d..7b61ef428d8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12000-07-21 Gerd Moellmann <gerd@gnu.org> 12000-07-21 Gerd Moellmann <gerd@gnu.org>
2 2
3 * xterm.c (note_mouse_highlight): Process overlays in the right
4 order of priority.
5
3 * keyboard.c (show_help_echo, gen_help_event): Extend comments. 6 * keyboard.c (show_help_echo, gen_help_event): Extend comments.
4 7
5 * xterm.c (note_mouse_highlight): If help-echo was found in an 8 * xterm.c (note_mouse_highlight): If help-echo was found in an