diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-07-18 18:19:37 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-07-18 18:19:37 +0000 |
commit | ba461919d0140d7aadee774f638d9a34c7460db3 (patch) | |
tree | ec2c267ff5062450c516d51fe0b26d72454ab0a6 /src/xmenu.c | |
parent | f8276b77a7bcd7115fcba19fe8afec630ed8f927 (diff) | |
download | emacs-ba461919d0140d7aadee774f638d9a34c7460db3.tar.gz |
(menu_help_callback): Call show_help_echo with
new arguments.
Diffstat (limited to 'src/xmenu.c')
-rw-r--r-- | src/xmenu.c | 4 |
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); } |