diff options
| author | Eli Zaretskii | 2022-09-18 20:21:58 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2022-09-18 20:21:58 +0300 |
| commit | a2f9788cbc5f514da5f11d9f875fd7482bb00732 (patch) | |
| tree | 84be3c8c3480785a12a2befd7f21d360e52e2c30 | |
| parent | c200098ddeb090b7b95f482a269bbe2a7a40d09d (diff) | |
| download | emacs-a2f9788cbc5f514da5f11d9f875fd7482bb00732.tar.gz emacs-a2f9788cbc5f514da5f11d9f875fd7482bb00732.zip | |
; Minor copyedits of *-frame-alist doc strings
* src/frame.c (syms_of_frame) <default-frame-alist>:
* lisp/frame.el (initial-frame-alist): Minor doc fixes.
| -rw-r--r-- | lisp/frame.el | 2 | ||||
| -rw-r--r-- | src/frame.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 69119b4c24f..a6b0f17189f 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -64,7 +64,7 @@ handles the corresponding kind of display.") | |||
| 64 | ;; But that's not necessary, because the default is to have one. | 64 | ;; But that's not necessary, because the default is to have one. |
| 65 | ;; By not specifying it here, we let an X resource specify it. | 65 | ;; By not specifying it here, we let an X resource specify it. |
| 66 | (defcustom initial-frame-alist nil | 66 | (defcustom initial-frame-alist nil |
| 67 | "Alist of parameters for the initial X window frame. | 67 | "Alist of parameters for the initial window-system (a.k.a. \"GUI\") frame. |
| 68 | You can set this in your init file; for example, | 68 | You can set this in your init file; for example, |
| 69 | 69 | ||
| 70 | (setq initial-frame-alist | 70 | (setq initial-frame-alist |
diff --git a/src/frame.c b/src/frame.c index 0c278259a79..506780ae364 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -6192,7 +6192,7 @@ You can also use a floating number between 0.0 and 1.0. */); | |||
| 6192 | #endif | 6192 | #endif |
| 6193 | 6193 | ||
| 6194 | DEFVAR_LISP ("default-frame-alist", Vdefault_frame_alist, | 6194 | DEFVAR_LISP ("default-frame-alist", Vdefault_frame_alist, |
| 6195 | doc: /* Alist of default values for frame creation. | 6195 | doc: /* Alist of default values of frame parameters for frame creation. |
| 6196 | These may be set in your init file, like this: | 6196 | These may be set in your init file, like this: |
| 6197 | (setq default-frame-alist \\='((width . 80) (height . 55) (menu-bar-lines . 1))) | 6197 | (setq default-frame-alist \\='((width . 80) (height . 55) (menu-bar-lines . 1))) |
| 6198 | These override values given in window system configuration data, | 6198 | These override values given in window system configuration data, |