changeset 52391:1ef98df61d74

(init_iterator): Remove old WINDOWSNT conditional.
author Jason Rumney <jasonr@gnu.org>
date Sun, 31 Aug 2003 21:38:07 +0000
parents 649e9e970ae9
children ea78742dd7ca
files src/ChangeLog src/xdisp.c
diffstat 2 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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  <jasonr@gnu.org>
+
+	* xdisp.c (init_iterator): Remove old WINDOWSNT conditional.
+
 2003-08-30  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>
 
 	* xterm.c (x_term_init): Initialize new fields in x_display_info.
--- 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);