aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-09-01 20:48:03 +0000
committerRichard M. Stallman <[email protected]>1996-09-01 20:48:03 +0000
commit61298010c6fbf05ea6dc57fa019311e0a2a9c551 (patch)
tree142f85742dc546cb24add20297bbb8d2133e7d5f /lisp
parent53c58b5d489f21fdeb5f3d011e34638f8124fb91 (diff)
Doc fixes.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/frame.el18
1 files changed, 12 insertions, 6 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 509c1347c2..274b86bbc9 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -587,7 +587,8 @@ If FRAME is omitted, describe the currently selected frame."
(defun set-default-font (font-name)
"Set the font of the selected frame to FONT.
-When called interactively, prompt for the name of the font to use."
+When called interactively, prompt for the name of the font to use.
+To get the frame's current default font, use `frame-parameters'."
(interactive "sFont name: ")
(modify-frame-parameters (selected-frame)
(list (cons 'font font-name)))
@@ -596,7 +597,8 @@ When called interactively, prompt for the name of the font to use."
(defun set-background-color (color-name)
"Set the background color of the selected frame to COLOR.
-When called interactively, prompt for the name of the color to use."
+When called interactively, prompt for the name of the color to use.
+To get the frame's current background color, use `frame-parameters'."
(interactive "sColor: ")
(modify-frame-parameters (selected-frame)
(list (cons 'background-color color-name)))
@@ -604,7 +606,8 @@ When called interactively, prompt for the name of the color to use."
(defun set-foreground-color (color-name)
"Set the foreground color of the selected frame to COLOR.
-When called interactively, prompt for the name of the color to use."
+When called interactively, prompt for the name of the color to use.
+To get the frame's current foreground color, use `frame-parameters'."
(interactive "sColor: ")
(modify-frame-parameters (selected-frame)
(list (cons 'foreground-color color-name)))
@@ -612,21 +615,24 @@ When called interactively, prompt for the name of the color to use."
(defun set-cursor-color (color-name)
"Set the text cursor color of the selected frame to COLOR.
-When called interactively, prompt for the name of the color to use."
+When called interactively, prompt for the name of the color to use.
+To get the frame's current cursor color, use `frame-parameters'."
(interactive "sColor: ")
(modify-frame-parameters (selected-frame)
(list (cons 'cursor-color color-name))))
(defun set-mouse-color (color-name)
"Set the color of the mouse pointer of the selected frame to COLOR.
-When called interactively, prompt for the name of the color to use."
+When called interactively, prompt for the name of the color to use.
+To get the frame's current mouse color, use `frame-parameters'."
(interactive "sColor: ")
(modify-frame-parameters (selected-frame)
(list (cons 'mouse-color color-name))))
(defun set-border-color (color-name)
"Set the color of the border of the selected frame to COLOR.
-When called interactively, prompt for the name of the color to use."
+When called interactively, prompt for the name of the color to use.
+To get the frame's current border color, use `frame-parameters'."
(interactive "sColor: ")
(modify-frame-parameters (selected-frame)
(list (cons 'border-color color-name))))