From: Gerd Moellmann Date: Tue, 18 Jul 2000 18:19:37 +0000 (+0000) Subject: (menu_help_callback): Call show_help_echo with X-Git-Tag: emacs-pretest-21.0.90~2753 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ba461919d0140d7aadee774f638d9a34c7460db3;p=emacs.git (menu_help_callback): Call show_help_echo with new arguments. --- diff --git a/src/xmenu.c b/src/xmenu.c index b4e92ef12cd..f18250ca256 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -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); }