1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-16 09:50:25 +00:00

(menu_help_callback): Call show_help_echo with

new arguments.
This commit is contained in:
Gerd Moellmann 2000-07-18 18:19:37 +00:00
parent f8276b77a7
commit ba461919d0

View File

@ -2473,6 +2473,7 @@ xdialog_show (f, keymaps, title, error)
return Qnil;
}
#else /* not USE_X_TOOLKIT */
/* The frame of the last activated non-toolkit menu bar.
@ -2489,7 +2490,8 @@ static void
menu_help_callback (help_string)
char *help_string;
{
show_help_echo (help_string ? build_string (help_string) : Qnil, 1);
show_help_echo (help_string ? build_string (help_string) : Qnil,
Qnil, Qnil, 0, 1);
}