comparison src/xdisp.c @ 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 afaa97555f79
children e22c0d1c4c97
comparison
equal deleted inserted replaced
46678:cbb6b64328d4 46679:b3bb26c0c857
9168 redisplay_internal (1); 9168 redisplay_internal (1);
9169 } 9169 }
9170 9170
9171 9171
9172 /* Function registered with record_unwind_protect in 9172 /* Function registered with record_unwind_protect in
9173 redisplay_internal. Clears the flag indicating that a redisplay is 9173 redisplay_internal. Reset redisplaying_p to the value it had
9174 in progress. */ 9174 before redisplay_internal was called, and clear
9175 redisplay_updating_p. */
9175 9176
9176 static Lisp_Object 9177 static Lisp_Object
9177 unwind_redisplay (old_redisplaying_p) 9178 unwind_redisplay (old_redisplaying_p)
9178 Lisp_Object old_redisplaying_p; 9179 Lisp_Object old_redisplaying_p;
9179 { 9180 {
9180 redisplaying_p = XFASTINT (old_redisplaying_p); 9181 redisplaying_p = XFASTINT (old_redisplaying_p);
9182 redisplay_updating_p = 0;
9181 return Qnil; 9183 return Qnil;
9182 } 9184 }
9183 9185
9184 9186
9185 /* Mark the display of window W as accurate or inaccurate. If 9187 /* Mark the display of window W as accurate or inaccurate. If