[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r106965: * lisp/frame.el (set-cursor-
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r106965: * lisp/frame.el (set-cursor-color): Doc fix. |
Date: |
Sat, 28 Jan 2012 11:21:04 +0800 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 106965
fixes bug(s): http://debbugs.gnu.org/352
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sat 2012-01-28 11:21:04 +0800
message:
* lisp/frame.el (set-cursor-color): Doc fix.
* doc/emacs/display.texi (Faces): Add xref to Colors node.
modified:
doc/emacs/ChangeLog
doc/emacs/display.texi
lisp/ChangeLog
lisp/frame.el
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog 2012-01-27 08:19:19 +0000
+++ b/doc/emacs/ChangeLog 2012-01-28 03:21:04 +0000
@@ -1,3 +1,7 @@
+2012-01-28 Chong Yidong <address@hidden>
+
+ * display.texi (Faces): Add xref to Colors node.
+
2012-01-27 Dani Moncayo <address@hidden>
* buffers.texi (Select Buffer): Clarify explanation of switching
=== modified file 'doc/emacs/display.texi'
--- a/doc/emacs/display.texi 2012-01-19 07:21:25 +0000
+++ b/doc/emacs/display.texi 2012-01-28 03:21:04 +0000
@@ -493,7 +493,7 @@
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
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-01-28 02:56:35 +0000
+++ b/lisp/ChangeLog 2012-01-28 03:21:04 +0000
@@ -1,5 +1,7 @@
2012-01-28 Chong Yidong <address@hidden>
+ * 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.
=== modified file 'lisp/frame.el'
--- a/lisp/frame.el 2012-01-19 07:21:25 +0000
+++ b/lisp/frame.el 2012-01-28 03:21:04 +0000
@@ -1108,7 +1108,11 @@
(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))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r106965: * lisp/frame.el (set-cursor-color): Doc fix.,
Chong Yidong <=