# HG changeset patch # User Richard M. Stallman # Date 1027567148 0 # Node ID b3bb26c0c8575e6ef07d08e96ad1a7cb09c047d8 # Parent cbb6b64328d4d0ef88045af3d2fd8c33a0e74522 (unwind_redisplay): Clear redisplay_updating_p. diff -r cbb6b64328d4 -r b3bb26c0c857 src/xdisp.c --- 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; }