* doc/emacs/display.texi (Faces): Add xref to Colors node.
Fixes: debbugs:352
+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
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
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.
(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))))