diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-06-09 00:52:18 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-06-09 00:52:18 +0000 |
commit | a4541ce75106d605aec73a9a59db91daf14f8ee8 (patch) | |
tree | 3d3b0d346e9da09ec4f2031d2a2e303abe739bd2 /src/keyboard.c | |
parent | 80997c4f883c09d725453fb83966205e760444e5 (diff) | |
download | emacs-a4541ce75106d605aec73a9a59db91daf14f8ee8.tar.gz |
(read_key_sequence): Don't run activate-menubar-hook
or call recompute-lucid-menubar.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r-- | src/keyboard.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 5556e3d18be..78fcb6743ce 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -5407,13 +5407,6 @@ read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last, { if (t + 1 >= bufsize) error ("key sequence too long"); - /* Run the Lucid hook. */ - if (!NILP (Vrun_hooks)) - call1 (Vrun_hooks, Qactivate_menubar_hook); - /* If it has changed current-menubar from previous value, - really recompute the menubar from the value. */ - if (! NILP (Vlucid_menu_bar_dirty_flag)) - call0 (Qrecompute_lucid_menubar); keybuf[t] = posn; keybuf[t+1] = key; |