diff options
| author | Gerd Moellmann | 2000-07-18 18:19:37 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-07-18 18:19:37 +0000 |
| commit | ba461919d0140d7aadee774f638d9a34c7460db3 (patch) | |
| tree | ec2c267ff5062450c516d51fe0b26d72454ab0a6 /src | |
| parent | f8276b77a7bcd7115fcba19fe8afec630ed8f927 (diff) | |
| download | emacs-ba461919d0140d7aadee774f638d9a34c7460db3.tar.gz emacs-ba461919d0140d7aadee774f638d9a34c7460db3.zip | |
(menu_help_callback): Call show_help_echo with
new arguments.
Diffstat (limited to 'src')
| -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) | |||
| 2473 | 2473 | ||
| 2474 | return Qnil; | 2474 | return Qnil; |
| 2475 | } | 2475 | } |
| 2476 | |||
| 2476 | #else /* not USE_X_TOOLKIT */ | 2477 | #else /* not USE_X_TOOLKIT */ |
| 2477 | 2478 | ||
| 2478 | /* The frame of the last activated non-toolkit menu bar. | 2479 | /* The frame of the last activated non-toolkit menu bar. |
| @@ -2489,7 +2490,8 @@ static void | |||
| 2489 | menu_help_callback (help_string) | 2490 | menu_help_callback (help_string) |
| 2490 | char *help_string; | 2491 | char *help_string; |
| 2491 | { | 2492 | { |
| 2492 | show_help_echo (help_string ? build_string (help_string) : Qnil, 1); | 2493 | show_help_echo (help_string ? build_string (help_string) : Qnil, |
| 2494 | Qnil, Qnil, 0, 1); | ||
| 2493 | } | 2495 | } |
| 2494 | 2496 | ||
| 2495 | 2497 | ||