aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2000-04-10 14:32:11 +0000
committerJason Rumney2000-04-10 14:32:11 +0000
commit192cb6cfa231885b76bc926266c50340a64f85e7 (patch)
treee82f9c21909cdd0f78122306e54801b2f42aea8f /src
parent7cf80d4efb58d0a0f2f84ab11fb573d7ac415428 (diff)
downloademacs-192cb6cfa231885b76bc926266c50340a64f85e7.tar.gz
emacs-192cb6cfa231885b76bc926266c50340a64f85e7.zip
(realize_face): Change FRAME_X_P to FRAME_WINDOW_P.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index d775cc174c5..99928419291 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -5796,7 +5796,7 @@ realize_face (cache, attrs, c, base_face, former_face_id)
5796 /* Insert the new face. */ 5796 /* Insert the new face. */
5797 cache_face (cache, face, lface_hash (attrs)); 5797 cache_face (cache, face, lface_hash (attrs));
5798#ifdef HAVE_WINDOW_SYSTEM 5798#ifdef HAVE_WINDOW_SYSTEM
5799 if (FRAME_X_P (cache->f) && face->font == NULL) 5799 if (FRAME_WINDOW_P (cache->f) && face->font == NULL)
5800 load_face_font (cache->f, face, c); 5800 load_face_font (cache->f, face, c);
5801#endif /* HAVE_WINDOW_SYSTEM */ 5801#endif /* HAVE_WINDOW_SYSTEM */
5802 return face; 5802 return face;