]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/frame.el (set-cursor-color): Doc fix.
authorChong Yidong <cyd@gnu.org>
Sat, 28 Jan 2012 03:21:04 +0000 (11:21 +0800)
committerChong Yidong <cyd@gnu.org>
Sat, 28 Jan 2012 03:21:04 +0000 (11:21 +0800)
* doc/emacs/display.texi (Faces): Add xref to Colors node.

Fixes: debbugs:352
doc/emacs/ChangeLog
doc/emacs/display.texi
lisp/ChangeLog
lisp/frame.el

index 5c56720a40e4857e123ee47b37556db848d3657a..edbd20fe984691070bcbcfec7fd52f8683823a93 100644 (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
index 67feb791fe198619f62d5f0bf9c360472ec72ec6..6e69b723204ee4dcac13e07ef55228c57a6bd5c5 100644 (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
index 29bf8e7a414fb20be8761da3a023074a15ed8825..c683f94444ba5f1e5d51517fbe2fdc73599aa813 100644 (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.
 
index 842d07abf502e48a4634d00dd61c53f2970bf5c7..88ae712bab20d9ef9960c12e1067ce12b80ce191 100644 (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))))