diff options
| author | Richard M. Stallman | 2001-10-30 00:24:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-10-30 00:24:12 +0000 |
| commit | cacf2193641f71840a49f940be34449c74d51918 (patch) | |
| tree | dda4235920cacc5ece1d72af182d0986ee64e4e6 | |
| parent | 8767d8666ac20b6b5db2400d66001539dd2bc9f2 (diff) | |
| download | emacs-cacf2193641f71840a49f940be34449c74d51918.tar.gz emacs-cacf2193641f71840a49f940be34449c74d51918.zip | |
(blink-cursor-mode): Doc fix.
| -rw-r--r-- | lisp/frame.el | 6 |
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. |
| 1170 | With a numeric argument, turn blinking cursor mode on iff ARG is positive. | 1170 | With a numeric argument, turn blinking cursor mode on iff ARG is positive. |
| 1171 | When blinking cursor mode is enabled, the cursor of the selected | 1171 | When blinking cursor mode is enabled, the cursor of the selected |
| 1172 | window blinks." | 1172 | window blinks. |
| 1173 | |||
| 1174 | Note that this command is effective only when Emacs | ||
| 1175 | displays through a window system, because then Emacs does its own | ||
| 1176 | cursor 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) |