Mercurial > emacs
comparison 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 |
comparison
equal
deleted
inserted
replaced
1707:86c951f6a444 | 1708:a688543448e7 |
---|---|
171 Lisp_Object frame, tail; | 171 Lisp_Object frame, tail; |
172 | 172 |
173 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr) | 173 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr) |
174 { | 174 { |
175 frame = XCONS (tail)->car; | 175 frame = XCONS (tail)->car; |
176 if (XFRAME (frame)->garbaged && XFRAME (frame)->visible) | 176 if (FRAME_GARBAGED_P (XFRAME (frame)) && FRAME_VISIBLE_P (XFRAME (frame))) |
177 Fredraw_frame (frame); | 177 Fredraw_frame (frame); |
178 } | 178 } |
179 return Qnil; | 179 return Qnil; |
180 } | 180 } |
181 | 181 |