1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

(syms_of_frame): Doc fix for default-frame-alist.

This commit is contained in:
Richard M. Stallman 1994-11-12 20:05:07 +00:00
parent 4ab8369716
commit 1855c8dd0b

View file

@ -1779,12 +1779,14 @@ displayed.");
DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
"Alist of default values for frame creation.\n\
These may be set in your init file, like this:\n\
(setq default-frame-alist '((width . 80) (height . 55)))\n\
These override values given in window system configuration data, like\n\
X Windows' defaults database.\n\
(setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1))\n\
These override values given in window system configuration data,\n\
including X Windows' defaults database.\n\
For values specific to the first Emacs frame, see `initial-frame-alist'.\n\
For values specific to the separate minibuffer frame, see\n\
`minibuffer-frame-alist'.");
`minibuffer-frame-alist'.\n\
The `menu-bar-lines' element of the list controls whether new frames\n\
have menu bars; `menu-bar-mode' works by altering this element.")
Vdefault_frame_alist = Qnil;
defsubr (&Sframep);