[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [patch] showing menu bar temporarily when f10 is pressed
From: |
Stefan Monnier |
Subject: |
Re: [patch] showing menu bar temporarily when f10 is pressed |
Date: |
Tue, 19 Jun 2012 17:42:23 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (gnu/linux) |
> + (unless visible
> + (menu-bar-mode 1))
Here we have a problem: if you have several frames, some of which have
a menu-bar and some don't, this will add a menu-bar to all of them, and
then (menu-bar-mode -1) will remove it from all the frames.
Why do you need the menu-bar? Why not pop up the menu usually bound to
C-mouse-3?
Stefan