Mercurial > emacs
changeset 46679:b3bb26c0c857
(unwind_redisplay): Clear redisplay_updating_p.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 25 Jul 2002 03:19:08 +0000 |
parents | cbb6b64328d4 |
children | 02cffb8517c3 |
files | src/xdisp.c |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Thu Jul 25 03:17:33 2002 +0000 +++ b/src/xdisp.c Thu Jul 25 03:19:08 2002 +0000 @@ -9170,14 +9170,16 @@ /* Function registered with record_unwind_protect in - redisplay_internal. Clears the flag indicating that a redisplay is - in progress. */ + redisplay_internal. Reset redisplaying_p to the value it had + before redisplay_internal was called, and clear + redisplay_updating_p. */ static Lisp_Object unwind_redisplay (old_redisplaying_p) Lisp_Object old_redisplaying_p; { redisplaying_p = XFASTINT (old_redisplaying_p); + redisplay_updating_p = 0; return Qnil; }