aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-11-12 20:05:07 +0000
committerRichard M. Stallman1994-11-12 20:05:07 +0000
commit1855c8dd0bbe4d990c083cf077f85b989b4a8f6f (patch)
treea3b67d4cc565c14175d2375488c1c1de9258c800 /src
parent4ab8369716a9814ae4f100e4111889e03a096567 (diff)
downloademacs-1855c8dd0bbe4d990c083cf077f85b989b4a8f6f.tar.gz
emacs-1855c8dd0bbe4d990c083cf077f85b989b4a8f6f.zip
(syms_of_frame): Doc fix for default-frame-alist.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/frame.c b/src/frame.c
index 72d5025ac28..7ee19e41f83 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1779,12 +1779,14 @@ displayed.");
1779 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist, 1779 DEFVAR_LISP ("default-frame-alist", &Vdefault_frame_alist,
1780 "Alist of default values for frame creation.\n\ 1780 "Alist of default values for frame creation.\n\
1781These may be set in your init file, like this:\n\ 1781These may be set in your init file, like this:\n\
1782 (setq default-frame-alist '((width . 80) (height . 55)))\n\ 1782 (setq default-frame-alist '((width . 80) (height . 55) (menu-bar-lines . 1))\n\
1783These override values given in window system configuration data, like\n\ 1783These override values given in window system configuration data,\n\
1784X Windows' defaults database.\n\ 1784 including X Windows' defaults database.\n\
1785For values specific to the first Emacs frame, see `initial-frame-alist'.\n\ 1785For values specific to the first Emacs frame, see `initial-frame-alist'.\n\
1786For values specific to the separate minibuffer frame, see\n\ 1786For values specific to the separate minibuffer frame, see\n\
1787`minibuffer-frame-alist'."); 1787 `minibuffer-frame-alist'.\n\
1788The `menu-bar-lines' element of the list controls whether new frames\n\
1789 have menu bars; `menu-bar-mode' works by altering this element.")
1788 Vdefault_frame_alist = Qnil; 1790 Vdefault_frame_alist = Qnil;
1789 1791
1790 defsubr (&Sframep); 1792 defsubr (&Sframep);