diff options
Diffstat (limited to 'src/xmenu.c')
| -rw-r--r-- | src/xmenu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index 60ac27a5b8f..8ecef00c88e 100644 --- a/src/xmenu.c +++ b/src/xmenu.c | |||
| @@ -383,7 +383,7 @@ x_menu_wait_for_event (void *data) | |||
| 383 | #endif | 383 | #endif |
| 384 | ) | 384 | ) |
| 385 | { | 385 | { |
| 386 | EMACS_TIME next_time = timer_check (1), *ntp; | 386 | EMACS_TIME next_time = timer_check (), *ntp; |
| 387 | long secs = EMACS_SECS (next_time); | 387 | long secs = EMACS_SECS (next_time); |
| 388 | long usecs = EMACS_USECS (next_time); | 388 | long usecs = EMACS_USECS (next_time); |
| 389 | SELECT_TYPE read_fds; | 389 | SELECT_TYPE read_fds; |
| @@ -712,7 +712,7 @@ show_help_event (FRAME_PTR f, xt_or_gtk_widget widget, Lisp_Object help) | |||
| 712 | break; | 712 | break; |
| 713 | } | 713 | } |
| 714 | #endif | 714 | #endif |
| 715 | show_help_echo (help, Qnil, Qnil, Qnil, 1); | 715 | show_help_echo (help, Qnil, Qnil, Qnil); |
| 716 | } | 716 | } |
| 717 | } | 717 | } |
| 718 | 718 | ||
| @@ -2201,7 +2201,7 @@ menu_help_callback (char *help_string, int pane, int item) | |||
| 2201 | Fcons (pane_name, | 2201 | Fcons (pane_name, |
| 2202 | Fcons (make_number (pane), Qnil))); | 2202 | Fcons (make_number (pane), Qnil))); |
| 2203 | show_help_echo (help_string ? build_string (help_string) : Qnil, | 2203 | show_help_echo (help_string ? build_string (help_string) : Qnil, |
| 2204 | Qnil, menu_object, make_number (item), 1); | 2204 | Qnil, menu_object, make_number (item)); |
| 2205 | } | 2205 | } |
| 2206 | 2206 | ||
| 2207 | static Lisp_Object | 2207 | static Lisp_Object |