aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTassilo Horn2013-12-20 15:51:53 +0100
committerTassilo Horn2013-12-20 15:51:53 +0100
commit98104aea4155a3bf1ec88f46101de76fc6f56ca1 (patch)
treebc7fb3b6aa397e5e1a368fd5c91843223f7757fe
parent2e6ddb2c95e23fbcf9aefd7d02d054e0e2f9a6a5 (diff)
downloademacs-98104aea4155a3bf1ec88f46101de76fc6f56ca1.tar.gz
emacs-98104aea4155a3bf1ec88f46101de76fc6f56ca1.zip
Document `blink-cursor-blinks'.
* doc/emacs/display.texi (Cursor Display): Document `blink-cursor-blinks'.
-rw-r--r--doc/emacs/ChangeLog5
-rw-r--r--doc/emacs/display.texi6
-rw-r--r--etc/NEWS1
3 files changed, 10 insertions, 2 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 4b2beb17d45..5fd0fa5abe7 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,11 +1,14 @@
12013-12-20 Tassilo Horn <tsdh@gnu.org> 12013-12-20 Tassilo Horn <tsdh@gnu.org>
2 2
3 * display.texi (Cursor Display): Document `blink-cursor-blinks'.
4
3 * buffers.texi: Update list-buffers "screeshop" to show Messages 5 * buffers.texi: Update list-buffers "screeshop" to show Messages
4 as major-mode. 6 as major-mode.
5 7
6 * entering.texi: Document `initial-buffer-choice' changes. 8 * entering.texi: Document `initial-buffer-choice' changes.
7 9
8 * misc.texi (arguments): Document `initial-buffer-choice' changes. 10 * misc.texi (emacsclient Options): Document
11 `initial-buffer-choice' changes.
9 12
10 * help.texi: Document that `?' now also shows subcommands of 13 * help.texi: Document that `?' now also shows subcommands of
11 prefix keys. 14 prefix keys.
diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi
index 80dffe2e4c9..9eace49d91f 100644
--- a/doc/emacs/display.texi
+++ b/doc/emacs/display.texi
@@ -1473,8 +1473,12 @@ pixels tall), or @code{nil} (no cursor at all).
1473@findex blink-cursor-mode 1473@findex blink-cursor-mode
1474@cindex cursor, blinking 1474@cindex cursor, blinking
1475@cindex blinking cursor 1475@cindex blinking cursor
1476@vindex blink-cursor-mode
1477@vindex blink-cursor-blinks
1476@vindex blink-cursor-alist 1478@vindex blink-cursor-alist
1477 To disable cursor blinking, change the variable 1479 By default, the cursor stops blinking after 10 blinks. This can be
1480changed by customizing the variable @code{blink-cursor-blinks}. To
1481disable cursor blinking altogether, change the variable
1478@code{blink-cursor-mode} to @code{nil} (@pxref{Easy Customization}), 1482@code{blink-cursor-mode} to @code{nil} (@pxref{Easy Customization}),
1479or add the line @code{(blink-cursor-mode 0)} to your init file. 1483or add the line @code{(blink-cursor-mode 0)} to your init file.
1480Alternatively, you can change how the cursor looks when it ``blinks 1484Alternatively, you can change how the cursor looks when it ``blinks
diff --git a/etc/NEWS b/etc/NEWS
index 53fb6e67f8f..232a2753af6 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -196,6 +196,7 @@ selected among several alternatives, as a matter of user preference.
196** New hooks `focus-in-hook', `focus-out-hook'. 196** New hooks `focus-in-hook', `focus-out-hook'.
197These are normal hooks run when an Emacs frame gains or loses input focus. 197These are normal hooks run when an Emacs frame gains or loses input focus.
198 198
199+++
199** The blink cursor stops blinking after 10 blinks (default) on X and NS. 200** The blink cursor stops blinking after 10 blinks (default) on X and NS.
200You can change the default by customizing the variable blink-cursor-blinks. 201You can change the default by customizing the variable blink-cursor-blinks.
201Also timers for blinking are stopped when no blinking is done, so Emacs does 202Also timers for blinking are stopped when no blinking is done, so Emacs does