diff options
| author | Gerd Moellmann | 2000-07-21 15:54:52 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-07-21 15:54:52 +0000 |
| commit | c20aeb834ddd34c72cf4f538ded8f8078a768ee0 (patch) | |
| tree | 735bed61e4eef9224dbdb625ec6502277919b0d6 | |
| parent | f83490015c7a46bd71735bc9b81782283c958724 (diff) | |
| download | emacs-c20aeb834ddd34c72cf4f538ded8f8078a768ee0.tar.gz emacs-c20aeb834ddd34c72cf4f538ded8f8078a768ee0.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 15 | ||||
| -rw-r--r-- | src/ChangeLog | 3 |
2 files changed, 14 insertions, 4 deletions
| @@ -2863,10 +2863,17 @@ that have a `help-echo' property. | |||
| 2863 | 2863 | ||
| 2864 | If the value of the `help-echo' property is a function, that function | 2864 | If the value of the `help-echo' property is a function, that function |
| 2865 | is called with three arguments WINDOW, OBJECT and POSITION. WINDOW is | 2865 | is called with three arguments WINDOW, OBJECT and POSITION. WINDOW is |
| 2866 | the window in which the help was found, OBJECT is the buffer or string | 2866 | the window in which the help was found. |
| 2867 | which had the `help-echo' property. POSITION is the position within | 2867 | |
| 2868 | OBJECT under the mouse pointer. The function should return a help | 2868 | If OBJECT is a buffer, POS is the position in the buffer where the |
| 2869 | string or nil for none. | 2869 | `help-echo' text property was found. |
| 2870 | |||
| 2871 | If OBJECT is an overlay, that overlay has a `help-echo' property, and | ||
| 2872 | POS is the position in the overlay's buffer under the mouse. | ||
| 2873 | |||
| 2874 | If OBJECT is a string (an overlay string or a string displayed with | ||
| 2875 | the `display' property). POS is the position in that string under the | ||
| 2876 | mouse. | ||
| 2870 | 2877 | ||
| 2871 | If the value of the `help-echo' property is neither a function nor a | 2878 | If the value of the `help-echo' property is neither a function nor a |
| 2872 | string, it is evaluated to obtain a help string. | 2879 | string, 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 @@ | |||
| 1 | 2000-07-21 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-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 |