diff options
| author | Eli Zaretskii | 2024-12-17 13:59:08 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2024-12-17 13:59:08 +0200 |
| commit | 39a438d693daeb2e770f8a30c7a02e4039bf0036 (patch) | |
| tree | dd2e04ccab6eb50eb88eb110e418dafa734010fb | |
| parent | b8a7e2ef71b25a851437d41e16621a07da824758 (diff) | |
| download | emacs-39a438d693daeb2e770f8a30c7a02e4039bf0036.tar.gz emacs-39a438d693daeb2e770f8a30c7a02e4039bf0036.zip | |
; * lisp/frame.el (clone-frame): Doc fix (bug#74750).
| -rw-r--r-- | lisp/frame.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 02f3f9f9dae..62bcd3c56b0 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -862,10 +862,11 @@ When called from Lisp, returns the new frame." | |||
| 862 | 862 | ||
| 863 | (defun clone-frame (&optional frame no-windows) | 863 | (defun clone-frame (&optional frame no-windows) |
| 864 | "Make a new frame with the same parameters and windows as FRAME. | 864 | "Make a new frame with the same parameters and windows as FRAME. |
| 865 | With a prefix arg NO-WINDOWS, don't clone the window configuration. | 865 | If NO-WINDOWS is non-nil (interactively, the prefix argument), don't |
| 866 | When the user option `frame-resize-pixelwise' is non-nil, and FRAME is | 866 | clone the configuration of FRAME's windows. |
| 867 | not text-only, clone the originating frame's pixel size. Otherwise, use | 867 | If FRAME is a graphical frame and `frame-resize-pixelwise' is non-nil, |
| 868 | the number of FRAME's columns and lines for the clone. | 868 | clone FRAME's pixel size. Otherwise, use the number of FRAME's columns |
| 869 | and lines for the clone. | ||
| 869 | 870 | ||
| 870 | FRAME defaults to the selected frame. The frame is created on the | 871 | FRAME defaults to the selected frame. The frame is created on the |
| 871 | same terminal as FRAME. If the terminal is a text-only terminal then | 872 | same terminal as FRAME. If the terminal is a text-only terminal then |