aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 790cc368552..9b7c3a0dcd7 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -162,7 +162,7 @@ static int region_face;
162 does not specify that display aspect. */ 162 does not specify that display aspect. */
163#define FACE_DEFAULT (~0) 163#define FACE_DEFAULT (~0)
164 164
165Lisp_Object Qface, Qmouse_face; 165Lisp_Object Qface;
166Lisp_Object Qpixmap_spec_p; 166Lisp_Object Qpixmap_spec_p;
167 167
168int face_name_id_number ( /* FRAME_PTR, Lisp_Object name */ ); 168int face_name_id_number ( /* FRAME_PTR, Lisp_Object name */ );
@@ -174,7 +174,7 @@ static void ensure_face_ready ( /* FRAME_PTR, int id */ );
174void recompute_basic_faces ( /* FRAME_PTR f */ ); 174void recompute_basic_faces ( /* FRAME_PTR f */ );
175static void merge_face_list ( /* FRAME_PTR, struct face *, Lisp_Object */ ); 175static void merge_face_list ( /* FRAME_PTR, struct face *, Lisp_Object */ );
176 176
177extern Lisp_Object Qforeground_color, Qbackground_color; 177extern Lisp_Object Qforeground_color, Qbackground_color, Qmouse_face;
178 178
179/* Allocating, copying, and comparing struct faces. */ 179/* Allocating, copying, and comparing struct faces. */
180 180
@@ -1312,8 +1312,6 @@ syms_of_xfaces ()
1312#ifdef HAVE_FACES 1312#ifdef HAVE_FACES
1313 Qface = intern ("face"); 1313 Qface = intern ("face");
1314 staticpro (&Qface); 1314 staticpro (&Qface);
1315 Qmouse_face = intern ("mouse-face");
1316 staticpro (&Qmouse_face);
1317 Qpixmap_spec_p = intern ("pixmap-spec-p"); 1315 Qpixmap_spec_p = intern ("pixmap-spec-p");
1318 staticpro (&Qpixmap_spec_p); 1316 staticpro (&Qpixmap_spec_p);
1319 1317