# HG changeset patch # User Jason Rumney # Date 1062365887 0 # Node ID 1ef98df61d74ecb0dcc67255e17f2b8774e08453 # Parent 649e9e970ae933bea3dabc84417dc2c8bffe0fc2 (init_iterator): Remove old WINDOWSNT conditional. diff -r 649e9e970ae9 -r 1ef98df61d74 src/ChangeLog --- a/src/ChangeLog Sun Aug 31 16:44:25 2003 +0000 +++ b/src/ChangeLog Sun Aug 31 21:38:07 2003 +0000 @@ -1,3 +1,7 @@ +2003-08-31 Jason Rumney + + * xdisp.c (init_iterator): Remove old WINDOWSNT conditional. + 2003-08-30 Jan Dj,Ad(Brv * xterm.c (x_term_init): Initialize new fields in x_display_info. diff -r 649e9e970ae9 -r 1ef98df61d74 src/xdisp.c --- a/src/xdisp.c Sun Aug 31 16:44:25 2003 +0000 +++ b/src/xdisp.c Sun Aug 31 21:38:07 2003 +0000 @@ -1999,11 +1999,7 @@ attribute changes of named faces, recompute them. When running in batch mode, the face cache of Vterminal_frame is null. If we happen to get called, make a dummy face cache. */ - if ( -#ifndef WINDOWSNT - noninteractive && -#endif - FRAME_FACE_CACHE (it->f) == NULL) + if (noninteractive && FRAME_FACE_CACHE (it->f) == NULL) init_frame_faces (it->f); if (FRAME_FACE_CACHE (it->f)->used == 0) recompute_basic_faces (it->f);