comparison lisp/frame.el @ 83144:2e868590c17b

Merged in changes from CVS trunk. Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-357 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-358 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-359 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-360 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-361 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-362 Support " [...]" style defaults in minibuffer-electric-default-mode * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-363 (read-number): Use canonical format for default in prompt. * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-364 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-365 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-184
author Karoly Lorentey <lorentey@elte.hu>
date Thu, 03 Jun 2004 16:45:20 +0000
parents caa7581d3828 83ecae86dde6
children dbcd0af66869
comparison
equal deleted inserted replaced
83143:9fb10038ca55 83144:2e868590c17b
1348 This starts the timer `blink-cursor-timer', which makes the cursor blink 1348 This starts the timer `blink-cursor-timer', which makes the cursor blink
1349 if appropriate. It also arranges to cancel that timer when the next 1349 if appropriate. It also arranges to cancel that timer when the next
1350 command starts, by installing a pre-command hook." 1350 command starts, by installing a pre-command hook."
1351 (when (null blink-cursor-timer) 1351 (when (null blink-cursor-timer)
1352 (add-hook 'pre-command-hook 'blink-cursor-end) 1352 (add-hook 'pre-command-hook 'blink-cursor-end)
1353 (internal-show-cursor nil nil)
1353 (setq blink-cursor-timer 1354 (setq blink-cursor-timer
1354 (run-with-timer blink-cursor-interval blink-cursor-interval 1355 (run-with-timer blink-cursor-interval blink-cursor-interval
1355 'blink-cursor-timer-function)))) 1356 'blink-cursor-timer-function))))
1356 1357
1357 (defun blink-cursor-timer-function () 1358 (defun blink-cursor-timer-function ()