summaryrefslogtreecommitdiff
path: root/src/xmenu.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-07-18 18:19:37 +0000
committerGerd Moellmann <gerd@gnu.org>2000-07-18 18:19:37 +0000
commitba461919d0140d7aadee774f638d9a34c7460db3 (patch)
treeec2c267ff5062450c516d51fe0b26d72454ab0a6 /src/xmenu.c
parentf8276b77a7bcd7115fcba19fe8afec630ed8f927 (diff)
downloademacs-ba461919d0140d7aadee774f638d9a34c7460db3.tar.gz
(menu_help_callback): Call show_help_echo with
new arguments.
Diffstat (limited to 'src/xmenu.c')
-rw-r--r--src/xmenu.c4
1 files changed, 3 insertions, 1 deletions
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);
}