mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
(menu-bar-mode): Doc fix.
This commit is contained in:
parent
c55f453be0
commit
dfd29450bf
1 changed files with 2 additions and 2 deletions
|
|
@ -200,11 +200,11 @@ and selects that window."
|
|||
(defvar menu-bar-mode nil)
|
||||
|
||||
(defun menu-bar-mode (flag)
|
||||
"Toggle display of vertical scroll bars on each frame.
|
||||
"Toggle display of a menu bar on each frame.
|
||||
This command applies to all frames that exist and frames to be
|
||||
created in the future.
|
||||
With a numeric argument, if the argument is negative,
|
||||
turn off scroll bars; otherwise, turn on scroll bars."
|
||||
turn off menu bars; otherwise, turn on menu bars."
|
||||
(interactive "P")
|
||||
(setq menu-bar-mode (if (null flag) (not menu-bar-mode)
|
||||
(or (not (numberp flag)) (>= flag 0))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue