[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/subr.el,v
From: |
Kim F. Storm |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/subr.el,v |
Date: |
Tue, 11 Jul 2006 00:17:44 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Kim F. Storm <kfstorm> 06/07/11 00:17:43
Index: subr.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/subr.el,v
retrieving revision 1.519
retrieving revision 1.520
diff -u -b -r1.519 -r1.520
--- subr.el 10 Jul 2006 18:52:12 -0000 1.519
+++ subr.el 11 Jul 2006 00:17:43 -0000 1.520
@@ -1708,22 +1708,21 @@
If optional arg NODISP is t, don't redisplay, just wait for input.
Redisplay does not happen if input is available before it starts.
-However, as a special exception, redisplay will occur even when
-input is available if SECONDS is negative.
Value is t if waited the full time with no input arriving, and nil otherwise.
-An obsolete but still supported form is
+An obsolete, but still supported form is
\(sit-for SECONDS &optional MILLISECONDS NODISP)
-Where the optional arg MILLISECONDS specifies an additional wait period,
+where the optional arg MILLISECONDS specifies an additional wait period,
in milliseconds; this was useful when Emacs was built without
-floating point support."
+floating point support.
+
+\(fn SECONDS &optional NODISP)"
(when (or obsolete (numberp nodisp))
(setq seconds (+ seconds (* 1e-3 nodisp)))
(setq nodisp obsolete))
(unless nodisp
- (let ((redisplay-dont-pause (or (< seconds 0) redisplay-dont-pause)))
- (redisplay)))
+ (redisplay))
(or (<= seconds 0)
(let ((timer (timer-create))
(echo-keystrokes 0))
- [Emacs-diffs] Changes to emacs/lisp/subr.el,v, Richard M. Stallman, 2006/07/08
- [Emacs-diffs] Changes to emacs/lisp/subr.el,v, Chong Yidong, 2006/07/10
- [Emacs-diffs] Changes to emacs/lisp/subr.el,v,
Kim F. Storm <=
- [Emacs-diffs] Changes to emacs/lisp/subr.el,v, Chong Yidong, 2006/07/17
- [Emacs-diffs] Changes to emacs/lisp/subr.el,v, Richard M. Stallman, 2006/07/24
- [Emacs-diffs] Changes to emacs/lisp/subr.el,v, Chong Yidong, 2006/07/26