aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2002-07-25 03:20:36 +0000
committerRichard M. Stallman2002-07-25 03:20:36 +0000
commitacfca545dc270207151530842057e6b899a52946 (patch)
treedfe189afffd18e4125012a5fcf885a1913fd0c0c /src
parent4f53f3b8e78b5131e5cd43bbc9e3954cfd19c710 (diff)
downloademacs-acfca545dc270207151530842057e6b899a52946.tar.gz
emacs-acfca545dc270207151530842057e6b899a52946.zip
(unwind_redisplay): Clear redisplay_updating_p.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/xdisp.c6
2 files changed, 11 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 13f0fd48da5..cc91ec92a9e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12002-07-24 Gerd Moellmann <gerd.moellmann@t-online.de>
2
3 * xterm.c (expose_overlaps): New function.
4 (expose_window): Use it to fix the display of overlapping rows.
5
6 * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
7
12002-07-23 Ken Raeburn <raeburn@gnu.org> 82002-07-23 Ken Raeburn <raeburn@gnu.org>
2 9
3 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well, 10 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
diff --git a/src/xdisp.c b/src/xdisp.c
index 5c8b786f410..687c0eb9440 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -9170,14 +9170,16 @@ redisplay_preserve_echo_area (from_where)
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
9176static Lisp_Object 9177static Lisp_Object
9177unwind_redisplay (old_redisplaying_p) 9178unwind_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