aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2019-03-08 11:45:55 +0200
committerEli Zaretskii2019-03-08 11:45:55 +0200
commitf1bddc78230625dfd4087a0f3ae4d4f592e10672 (patch)
tree458949c2d889dd2347d964ad303f4526c88b89a1
parent2848623420e0478ae5ffda8d79af9fde0128dfbe (diff)
downloademacs-f1bddc78230625dfd4087a0f3ae4d4f592e10672.tar.gz
emacs-f1bddc78230625dfd4087a0f3ae4d4f592e10672.zip
* lisp/frame.el (make-frame-command): Doc fix. (Bug#34715)
-rw-r--r--lisp/frame.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 545d2665365..9438b4a72ed 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -597,7 +597,9 @@ If DISPLAY is nil, that stands for the selected frame's display."
597(defun make-frame-command () 597(defun make-frame-command ()
598 "Make a new frame, on the same terminal as the selected frame. 598 "Make a new frame, on the same terminal as the selected frame.
599If the terminal is a text-only terminal, this also selects the 599If the terminal is a text-only terminal, this also selects the
600new frame." 600new frame.
601
602When called from Lisp, returns the new frame."
601 (interactive) 603 (interactive)
602 (if (display-graphic-p) 604 (if (display-graphic-p)
603 (make-frame) 605 (make-frame)