From: Gerd Moellmann Date: Tue, 18 Jul 2000 19:04:00 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-21.0.90~2748 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=85a8aca9a7cc0cbf933ce2092245fe4143ce51d6;p=emacs.git *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index 28b20a36519..e15293e5518 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -2839,10 +2839,11 @@ moves over a tool-bar item or a piece of text that has a text property that have a `help-echo' property. If the value of the `help-echo' property is a function, that function -is called with two arguments OBJECT and POSITION. OBJECT is the -buffer or string which had the `help-echo' property. POSITION is -the position within OBJECT under the mouse pointer. The function -should return a help string or nil for none. +is called with three arguments WINDOW, OBJECT and POSITION. WINDOW is +the window in which the help was found, OBJECT is the buffer or string +which had the `help-echo' property. POSITION is the position within +OBJECT under the mouse pointer. The function should return a help +string or nil for none. If the value of the `help-echo' property is neither a function nor a string, it is evaluated to obtain a help string. diff --git a/src/ChangeLog b/src/ChangeLog index 2ecdc87e7c8..bfcf0ce93c9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2000-07-18 Gerd Moellmann + * xfaces.c (face-alternative-font-family-alist): Remove + DEFVAR_LISP; staticpro instead. + * xmenu.c (menu_help_callback): Call show_help_echo with new arguments.