]> git.eshelyaron.com Git - emacs.git/commitdiff
(init_iterator): Remove old WINDOWSNT conditional.
authorJason Rumney <jasonr@gnu.org>
Sun, 31 Aug 2003 21:38:07 +0000 (21:38 +0000)
committerJason Rumney <jasonr@gnu.org>
Sun, 31 Aug 2003 21:38:07 +0000 (21:38 +0000)
src/ChangeLog
src/xdisp.c

index c8944754767938517c4401dcafeddbe2a1863937..394a6b17ddbc550983737f614d0a23d23c9758a8 100644 (file)
@@ -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\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
        * xterm.c (x_term_init): Initialize new fields in x_display_info.
index c825dd21d3d2db018744394822386456a9c0a414..9b3fc088775ece9a25117b755020c2052883fdcf 100644 (file)
@@ -1999,11 +1999,7 @@ init_iterator (it, w, charpos, bytepos, row, base_face_id)
      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);