aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/lispref/frames.texi2
-rw-r--r--lisp/menu-bar.el4
2 files changed, 4 insertions, 2 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index 91c512c0ab4..65eeec6aea2 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -744,7 +744,7 @@ frame fixed by adjusting the number of lines and columns.
744If the optional argument @var{frames} is @code{nil}, this applies the 744If the optional argument @var{frames} is @code{nil}, this applies the
745font to the selected frame only. If @var{frames} is non-@code{nil}, it 745font to the selected frame only. If @var{frames} is non-@code{nil}, it
746should be a list of frames to act upon, or @code{t} meaning all existing 746should be a list of frames to act upon, or @code{t} meaning all existing
747graphical frames. 747and all future graphical frames.
748@end deffn 748@end deffn
749 749
750 750
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 6a2ff630698..d57ba742113 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -652,7 +652,9 @@ by \"Save Options\" in Custom buffers.")
652;; Function for setting/saving default font. 652;; Function for setting/saving default font.
653 653
654(defun menu-set-font () 654(defun menu-set-font ()
655 "Interactively select a font and make it the default on all existing frames." 655 "Interactively select a font and make it the default on all frames.
656
657The selected font will be the default on both the existing and futire frames."
656 (interactive) 658 (interactive)
657 (set-frame-font (if (fboundp 'x-select-font) 659 (set-frame-font (if (fboundp 'x-select-font)
658 (x-select-font) 660 (x-select-font)