* lisp/frame.el (set-cursor-color): Doc fix.

* doc/emacs/display.texi (Faces): Add xref to Colors node.

Fixes: debbugs:352
This commit is contained in:
Chong Yidong 2012-01-28 11:21:04 +08:00
parent 0e24a8b2f4
commit 2680c30938
4 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2012-01-28 Chong Yidong <cyd@gnu.org>
* display.texi (Faces): Add xref to Colors node.
2012-01-27 Dani Moncayo <dmoncayo@gmail.com>
* buffers.texi (Select Buffer): Clarify explanation of switching

View file

@ -493,7 +493,7 @@ attribute is taken from the face named @code{default}.
The @code{default} face is the default for displaying text, and all
of its attributes are specified. Its background color is also used as
the frame's background color.
the frame's background color. @xref{Colors}.
@cindex cursor face
Another special face is the @code{cursor} face. On graphical

View file

@ -1,5 +1,7 @@
2012-01-28 Chong Yidong <cyd@gnu.org>
* frame.el (set-cursor-color): Doc fix (Bug#352).
* mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
(rmail-mail-return): Switch to NEWBUF only if it is non-nil.

View file

@ -1108,7 +1108,11 @@ To get the frame's current foreground color, use `frame-parameters'."
(defun set-cursor-color (color-name)
"Set the text cursor color of the selected frame to COLOR-NAME.
When called interactively, prompt for the name of the color to use.
To get the frame's current cursor color, use `frame-parameters'."
This works by setting the `cursor-color' frame parameter on the
selected frame.
You can also set the text cursor color, for all frames, by
customizing the `cursor' face."
(interactive (list (read-color "Cursor color: ")))
(modify-frame-parameters (selected-frame)
(list (cons 'cursor-color color-name))))