aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-10-30 00:24:12 +0000
committerRichard M. Stallman2001-10-30 00:24:12 +0000
commitcacf2193641f71840a49f940be34449c74d51918 (patch)
treedda4235920cacc5ece1d72af182d0986ee64e4e6
parent8767d8666ac20b6b5db2400d66001539dd2bc9f2 (diff)
downloademacs-cacf2193641f71840a49f940be34449c74d51918.tar.gz
emacs-cacf2193641f71840a49f940be34449c74d51918.zip
(blink-cursor-mode): Doc fix.
-rw-r--r--lisp/frame.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index 476aa2fca83..983233414d7 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -1169,7 +1169,11 @@ This timer calls `blink-cursor' every `blink-cursor-interval' seconds.")
1169 "Toggle blinking cursor mode. 1169 "Toggle blinking cursor mode.
1170With a numeric argument, turn blinking cursor mode on iff ARG is positive. 1170With a numeric argument, turn blinking cursor mode on iff ARG is positive.
1171When blinking cursor mode is enabled, the cursor of the selected 1171When blinking cursor mode is enabled, the cursor of the selected
1172window blinks." 1172window blinks.
1173
1174Note that this command is effective only when Emacs
1175displays through a window system, because then Emacs does its own
1176cursor display. On a text-only terminal, this is not implemented."
1173 (interactive "P") 1177 (interactive "P")
1174 (let ((on-p (if (null arg) 1178 (let ((on-p (if (null arg)
1175 (not blink-cursor-mode) 1179 (not blink-cursor-mode)