diff options
| author | Richard M. Stallman | 1996-09-01 20:48:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-01 20:48:03 +0000 |
| commit | 61298010c6fbf05ea6dc57fa019311e0a2a9c551 (patch) | |
| tree | 142f85742dc546cb24add20297bbb8d2133e7d5f | |
| parent | 53c58b5d489f21fdeb5f3d011e34638f8124fb91 (diff) | |
| download | emacs-61298010c6fbf05ea6dc57fa019311e0a2a9c551.tar.gz emacs-61298010c6fbf05ea6dc57fa019311e0a2a9c551.zip | |
Doc fixes.
| -rw-r--r-- | lisp/frame.el | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 509c1347c2d..274b86bbc95 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -587,7 +587,8 @@ If FRAME is omitted, describe the currently selected frame." | |||
| 587 | 587 | ||
| 588 | (defun set-default-font (font-name) | 588 | (defun set-default-font (font-name) |
| 589 | "Set the font of the selected frame to FONT. | 589 | "Set the font of the selected frame to FONT. |
| 590 | When called interactively, prompt for the name of the font to use." | 590 | When called interactively, prompt for the name of the font to use. |
| 591 | To get the frame's current default font, use `frame-parameters'." | ||
| 591 | (interactive "sFont name: ") | 592 | (interactive "sFont name: ") |
| 592 | (modify-frame-parameters (selected-frame) | 593 | (modify-frame-parameters (selected-frame) |
| 593 | (list (cons 'font font-name))) | 594 | (list (cons 'font font-name))) |
| @@ -596,7 +597,8 @@ When called interactively, prompt for the name of the font to use." | |||
| 596 | 597 | ||
| 597 | (defun set-background-color (color-name) | 598 | (defun set-background-color (color-name) |
| 598 | "Set the background color of the selected frame to COLOR. | 599 | "Set the background color of the selected frame to COLOR. |
| 599 | When called interactively, prompt for the name of the color to use." | 600 | When called interactively, prompt for the name of the color to use. |
| 601 | To get the frame's current background color, use `frame-parameters'." | ||
| 600 | (interactive "sColor: ") | 602 | (interactive "sColor: ") |
| 601 | (modify-frame-parameters (selected-frame) | 603 | (modify-frame-parameters (selected-frame) |
| 602 | (list (cons 'background-color color-name))) | 604 | (list (cons 'background-color color-name))) |
| @@ -604,7 +606,8 @@ When called interactively, prompt for the name of the color to use." | |||
| 604 | 606 | ||
| 605 | (defun set-foreground-color (color-name) | 607 | (defun set-foreground-color (color-name) |
| 606 | "Set the foreground color of the selected frame to COLOR. | 608 | "Set the foreground color of the selected frame to COLOR. |
| 607 | When called interactively, prompt for the name of the color to use." | 609 | When called interactively, prompt for the name of the color to use. |
| 610 | To get the frame's current foreground color, use `frame-parameters'." | ||
| 608 | (interactive "sColor: ") | 611 | (interactive "sColor: ") |
| 609 | (modify-frame-parameters (selected-frame) | 612 | (modify-frame-parameters (selected-frame) |
| 610 | (list (cons 'foreground-color color-name))) | 613 | (list (cons 'foreground-color color-name))) |
| @@ -612,21 +615,24 @@ When called interactively, prompt for the name of the color to use." | |||
| 612 | 615 | ||
| 613 | (defun set-cursor-color (color-name) | 616 | (defun set-cursor-color (color-name) |
| 614 | "Set the text cursor color of the selected frame to COLOR. | 617 | "Set the text cursor color of the selected frame to COLOR. |
| 615 | When called interactively, prompt for the name of the color to use." | 618 | When called interactively, prompt for the name of the color to use. |
| 619 | To get the frame's current cursor color, use `frame-parameters'." | ||
| 616 | (interactive "sColor: ") | 620 | (interactive "sColor: ") |
| 617 | (modify-frame-parameters (selected-frame) | 621 | (modify-frame-parameters (selected-frame) |
| 618 | (list (cons 'cursor-color color-name)))) | 622 | (list (cons 'cursor-color color-name)))) |
| 619 | 623 | ||
| 620 | (defun set-mouse-color (color-name) | 624 | (defun set-mouse-color (color-name) |
| 621 | "Set the color of the mouse pointer of the selected frame to COLOR. | 625 | "Set the color of the mouse pointer of the selected frame to COLOR. |
| 622 | When called interactively, prompt for the name of the color to use." | 626 | When called interactively, prompt for the name of the color to use. |
| 627 | To get the frame's current mouse color, use `frame-parameters'." | ||
| 623 | (interactive "sColor: ") | 628 | (interactive "sColor: ") |
| 624 | (modify-frame-parameters (selected-frame) | 629 | (modify-frame-parameters (selected-frame) |
| 625 | (list (cons 'mouse-color color-name)))) | 630 | (list (cons 'mouse-color color-name)))) |
| 626 | 631 | ||
| 627 | (defun set-border-color (color-name) | 632 | (defun set-border-color (color-name) |
| 628 | "Set the color of the border of the selected frame to COLOR. | 633 | "Set the color of the border of the selected frame to COLOR. |
| 629 | When called interactively, prompt for the name of the color to use." | 634 | When called interactively, prompt for the name of the color to use. |
| 635 | To get the frame's current border color, use `frame-parameters'." | ||
| 630 | (interactive "sColor: ") | 636 | (interactive "sColor: ") |
| 631 | (modify-frame-parameters (selected-frame) | 637 | (modify-frame-parameters (selected-frame) |
| 632 | (list (cons 'border-color color-name)))) | 638 | (list (cons 'border-color color-name)))) |