emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-24 78101c2: * lisp/subr.el (redisplay-dont-pause): M


From: Stefan Monnier
Subject: [Emacs-diffs] emacs-24 78101c2: * lisp/subr.el (redisplay-dont-pause): Mark as obsolete.
Date: Thu, 18 Dec 2014 15:26:02 +0000

branch: emacs-24
commit 78101c2b5840218933675236062060523bdd163c
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * lisp/subr.el (redisplay-dont-pause): Mark as obsolete.
    
    * doc/lispref/display.texi (Forcing Redisplay): Remove references to
    redisplay-dont-pause and redisplay-preemption-period (which doesn't
    even exist).
---
 doc/lispref/ChangeLog    |    6 ++++++
 doc/lispref/display.texi |   27 +--------------------------
 etc/NEWS                 |    3 +++
 lisp/ChangeLog           |    4 ++++
 lisp/subr.el             |    1 +
 5 files changed, 15 insertions(+), 26 deletions(-)

diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index dcab3ba..12554dd 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,9 @@
+2014-12-18  Stefan Monnier  <address@hidden>
+
+       * display.texi (Forcing Redisplay): Remove references to
+       redisplay-dont-pause and redisplay-preemption-period (which doesn't
+       even exist).
+
 2014-12-11  Eli Zaretskii  <address@hidden>
 
        * text.texi (Comparing Text): Prevent a text string from being
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 46be5ec..c4753ec 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -85,10 +85,7 @@ waiting for input.
 @defun redisplay &optional force
 This function tries immediately to redisplay.  The optional argument
 @var{force}, if address@hidden, forces the redisplay to be performed,
-instead of being preempted, even if input is pending and the variable
address@hidden is @code{nil} (see below).  If
address@hidden is address@hidden (the default), this
-function redisplays in any case, i.e., @var{force} does nothing.
+instead of being preempted if input is pending.
 
 The function returns @code{t} if it actually tried to redisplay, and
 @code{nil} otherwise.  A value of @code{t} does not mean that
@@ -96,28 +93,6 @@ redisplay proceeded to completion; it could have been 
preempted by
 newly arriving input.
 @end defun
 
address@hidden redisplay-dont-pause
-If this variable is @code{nil}, arriving input events preempt
-redisplay; Emacs avoids starting a redisplay, and stops any redisplay
-that is in progress, until the input has been processed.  In
-particular, @code{(redisplay)} returns @code{nil} without actually
-redisplaying, if there is pending input.
-
-The default value is @code{t}, which means that pending input does not
-preempt redisplay.
address@hidden defvar
-
address@hidden redisplay-preemption-period
-If @code{redisplay-dont-pause} is @code{nil}, this variable specifies
-how many seconds Emacs waits between checks for new input during
-redisplay; if input arrives during this interval, redisplay stops and
-the input is processed.  The default value is 0.1; if the value is
address@hidden, Emacs does not check for input during redisplay.
-
-This variable has no effect when @code{redisplay-dont-pause} is
address@hidden (the default).
address@hidden defvar
-
 @defvar pre-redisplay-function
 A function run just before redisplay.  It is called with one argument,
 the set of windows to redisplay.
diff --git a/etc/NEWS b/etc/NEWS
index 3d580ee..b34bca8 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -27,6 +27,9 @@ otherwise leave it unmarked.
 ---
 ** The default value of `history-length' has increased to 100.
 
++++
+** `redisplay-dont-pause' is declared as obsolete.
+
 
 * Changes in Specialized Modes and Packages in Emacs 24.5
 
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a7fe332..34c335c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2014-12-18  Stefan Monnier  <address@hidden>
+
+       * subr.el (redisplay-dont-pause): Mark as obsolete.
+
 2014-12-17  Michael Albinus  <address@hidden>
 
        * net/tramp.el (tramp-error-with-buffer): Call `message' properly.
diff --git a/lisp/subr.el b/lisp/subr.el
index 839b915..0a8b240 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1292,6 +1292,7 @@ is converted into a string by expressing it in decimal."
 (make-obsolete-variable 'redisplay-end-trigger-functions 'jit-lock-register 
"23.1")
 (make-obsolete-variable 'deferred-action-list 'post-command-hook "24.1")
 (make-obsolete-variable 'deferred-action-function 'post-command-hook "24.1")
+(make-obsolete-variable 'redisplay-dont-pause nil "24.5")
 (make-obsolete 'window-redisplay-end-trigger nil "23.1")
 (make-obsolete 'set-window-redisplay-end-trigger nil "23.1")
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]