diff src/dispnew.c @ 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 60a49bc9673a
children be62942446f0
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;