aboutsummaryrefslogtreecommitdiffstats
path: root/src/xdisp.c
diff options
context:
space:
mode:
authorJason Rumney <[email protected]>2003-08-31 21:38:07 +0000
committerJason Rumney <[email protected]>2003-08-31 21:38:07 +0000
commita24d4cb27a5ef18009ce05dde83d5d6b1b67911d (patch)
tree09b46e1e7d27d83f34286c2cdd1cf92d36b5abb6 /src/xdisp.c
parentbbc2d90e8c8343a5274d3a22f3436f7d8452a403 (diff)
(init_iterator): Remove old WINDOWSNT conditional.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r--src/xdisp.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index c825dd21d3..9b3fc08877 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -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);