1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 06:50:46 -08:00

macterm.c (x_flush, XTframe_up_to_date): use FRAME_MAC_P

instead of FRAME_X_P
This commit is contained in:
Steven Tamm 2004-05-12 01:40:05 +00:00
parent c968810061
commit fe97e8dfe1
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* macterm.c (x_flush, XTframe_up_to_date): use FRAME_MAC_P
instead of FRAME_X_P
2004-05-11 Kim F. Storm <storm@cua.dk>
* process.c (read_process_output): Grow decoding_buf when needed;

View file

@ -1210,7 +1210,7 @@ x_flush (f)
FOR_EACH_FRAME (rest, frame)
x_flush (XFRAME (frame));
}
else if (FRAME_X_P (f))
else if (FRAME_MAC_P (f))
XFlush (FRAME_MAC_DISPLAY (f));
UNBLOCK_INPUT;
#endif /* TARGET_API_MAC_CARBON */
@ -1410,7 +1410,7 @@ static void
XTframe_up_to_date (f)
struct frame *f;
{
if (FRAME_X_P (f))
if (FRAME_MAC_P (f))
{
struct mac_display_info *dpyinfo = FRAME_MAC_DISPLAY_INFO (f);