diff options
| author | Gerd Moellmann | 2000-07-13 23:56:44 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-07-13 23:56:44 +0000 |
| commit | d5aa31d88c0fc24ee2c758d9d0121ed7757bc865 (patch) | |
| tree | 2159f3e2f4b8523c1406da9551c70f5cfd16fc1c | |
| parent | 71e5b1b87f023c1e79b308e8b1170c1ecb864295 (diff) | |
| download | emacs-d5aa31d88c0fc24ee2c758d9d0121ed7757bc865.tar.gz emacs-d5aa31d88c0fc24ee2c758d9d0121ed7757bc865.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 15 | ||||
| -rw-r--r-- | src/ChangeLog | 19 |
2 files changed, 29 insertions, 5 deletions
| @@ -1250,6 +1250,9 @@ functionality with aliases for the mldrag functions. | |||
| 1250 | * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, | 1250 | * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, |
| 1251 | (Display-related features are described in a page of their own below.) | 1251 | (Display-related features are described in a page of their own below.) |
| 1252 | 1252 | ||
| 1253 | ** The value of the `help-echo' text property is evaluated, if it | ||
| 1254 | is not a string already, to obtain a help string. | ||
| 1255 | |||
| 1253 | ** Function `make-obsolete' now has an optional arg to say when the | 1256 | ** Function `make-obsolete' now has an optional arg to say when the |
| 1254 | function was declared obsolete. | 1257 | function was declared obsolete. |
| 1255 | 1258 | ||
| @@ -2814,11 +2817,13 @@ moves over a tool-bar item or a piece of text that has a text property | |||
| 2814 | `help-echo'. This feature also applies to strings in the mode line | 2817 | `help-echo'. This feature also applies to strings in the mode line |
| 2815 | that have a `help-echo' property. | 2818 | that have a `help-echo' property. |
| 2816 | 2819 | ||
| 2817 | The value of the `help-echo' property must be a string. For tool-bar | 2820 | If the value of the `help-echo' property is not a string. it is |
| 2818 | items, their key definition is used to determine the help to display. | 2821 | evaluated to obtain a help string. |
| 2819 | If their definition contains a property `:help FORM', FORM is | 2822 | |
| 2820 | evaluated to determine the help string. Otherwise, the caption of the | 2823 | For tool-bar items, their key definition is used to determine the help |
| 2821 | tool-bar item is used. | 2824 | to display. If their definition contains a property `:help FORM', |
| 2825 | FORM is evaluated to determine the help string. Otherwise, the | ||
| 2826 | caption of the tool-bar item is used. | ||
| 2822 | 2827 | ||
| 2823 | The hook `show-help-function' can be set to a function that displays | 2828 | The hook `show-help-function' can be set to a function that displays |
| 2824 | help differently. For example, enabling a tooltip window causes the | 2829 | help differently. For example, enabling a tooltip window causes the |
diff --git a/src/ChangeLog b/src/ChangeLog index df27fad0945..0eb6ccd580d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,22 @@ | |||
| 1 | 2000-07-14 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xterm.c (construct_mouse_click, x_scroll_bar_to_input_event) | ||
| 4 | (x_scroll_bar_handle_click, SET_SAVED_MENU_EVENT, XTread_socket): | ||
| 5 | Always set `arg' member of input_events. | ||
| 6 | (construct_menu_click): Unused function removed. | ||
| 7 | |||
| 8 | * msdos.c (dos_rawgetc): Always set `arg' member of input_events. | ||
| 9 | |||
| 10 | * w32term.c (construct_mouse_click, construct_mouse_wheel) | ||
| 11 | (construct_drag_n_drop, x_scroll_bar_handle_click) | ||
| 12 | (w32_read_socket): Always set `arg' member of input_events. | ||
| 13 | |||
| 14 | * keyboard.c (show_help_echo): Use eval_form. Add comment. | ||
| 15 | |||
| 16 | * lisp.h (eval_form): Add prototype. | ||
| 17 | |||
| 18 | * xdisp.c (eval_form): Make it externally visible. | ||
| 19 | |||
| 1 | 2000-07-13 Gerd Moellmann <gerd@gnu.org> | 20 | 2000-07-13 Gerd Moellmann <gerd@gnu.org> |
| 2 | 21 | ||
| 3 | * xterm.c (x_handle_tool_bar_click): Store the frame in the | 22 | * xterm.c (x_handle_tool_bar_click): Store the frame in the |