changeset 1708:a688543448e7

* dispnew.c (Fredraw_display): Use the FRAME_VISIBLE_P and FRAME_GARBAGED_P accessors. * dispnew.c (Fredraw_display): Use the FRAME_VISIBLE_P and FRAME_GARBAGED_P accessors.
author Jim Blandy <jimb@redhat.com>
date Thu, 24 Dec 1992 06:04:32 +0000
parents 86c951f6a444
children b86b3237e017
files src/dispnew.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/dispnew.c	Thu Dec 24 06:03:20 1992 +0000
+++ b/src/dispnew.c	Thu Dec 24 06:04:32 1992 +0000
@@ -173,7 +173,7 @@
   for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
     {
       frame = XCONS (tail)->car;
-      if (XFRAME (frame)->garbaged && XFRAME (frame)->visible)
+      if (FRAME_GARBAGED_P (XFRAME (frame)) && FRAME_VISIBLE_P (XFRAME (frame)))
 	Fredraw_frame (frame);
     }
   return Qnil;