From: Jason Rumney Date: Mon, 10 Apr 2000 14:32:11 +0000 (+0000) Subject: (realize_face): Change FRAME_X_P to FRAME_WINDOW_P. X-Git-Tag: emacs-pretest-21.0.90~4289 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=192cb6cfa231885b76bc926266c50340a64f85e7;p=emacs.git (realize_face): Change FRAME_X_P to FRAME_WINDOW_P. --- 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) /* Insert the new face. */ cache_face (cache, face, lface_hash (attrs)); #ifdef HAVE_WINDOW_SYSTEM - if (FRAME_X_P (cache->f) && face->font == NULL) + if (FRAME_WINDOW_P (cache->f) && face->font == NULL) load_face_font (cache->f, face, c); #endif /* HAVE_WINDOW_SYSTEM */ return face;