aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-13 23:56:44 +0000
committerGerd Moellmann2000-07-13 23:56:44 +0000
commitd5aa31d88c0fc24ee2c758d9d0121ed7757bc865 (patch)
tree2159f3e2f4b8523c1406da9551c70f5cfd16fc1c
parent71e5b1b87f023c1e79b308e8b1170c1ecb864295 (diff)
downloademacs-d5aa31d88c0fc24ee2c758d9d0121ed7757bc865.tar.gz
emacs-d5aa31d88c0fc24ee2c758d9d0121ed7757bc865.zip
*** empty log message ***
-rw-r--r--etc/NEWS15
-rw-r--r--src/ChangeLog19
2 files changed, 29 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index cc0c27501cc..51edc097265 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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
1254is 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
1254function was declared obsolete. 1257function 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
2815that have a `help-echo' property. 2818that have a `help-echo' property.
2816 2819
2817The value of the `help-echo' property must be a string. For tool-bar 2820If the value of the `help-echo' property is not a string. it is
2818items, their key definition is used to determine the help to display. 2821evaluated to obtain a help string.
2819If their definition contains a property `:help FORM', FORM is 2822
2820evaluated to determine the help string. Otherwise, the caption of the 2823For tool-bar items, their key definition is used to determine the help
2821tool-bar item is used. 2824to display. If their definition contains a property `:help FORM',
2825FORM is evaluated to determine the help string. Otherwise, the
2826caption of the tool-bar item is used.
2822 2827
2823The hook `show-help-function' can be set to a function that displays 2828The hook `show-help-function' can be set to a function that displays
2824help differently. For example, enabling a tooltip window causes the 2829help 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 @@
12000-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
12000-07-13 Gerd Moellmann <gerd@gnu.org> 202000-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