diff options
| author | Richard M. Stallman | 1998-11-18 01:40:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-11-18 01:40:17 +0000 |
| commit | ff83dbb19aae8549e8ef4a417869e8d46f884a43 (patch) | |
| tree | 07fe3f80241a54b43073af8586e0e12a790fe82c /src | |
| parent | 69bb837eb5724a9d70c4cfeae9d080b5c8f8abab (diff) | |
| download | emacs-ff83dbb19aae8549e8ef4a417869e8d46f884a43.tar.gz emacs-ff83dbb19aae8549e8ef4a417869e8d46f884a43.zip | |
(Qmouse_face): Replace definition with extern decl.
(syms_of_xfaces): Initialization deleted.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 6 |
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 | ||
| 165 | Lisp_Object Qface, Qmouse_face; | 165 | Lisp_Object Qface; |
| 166 | Lisp_Object Qpixmap_spec_p; | 166 | Lisp_Object Qpixmap_spec_p; |
| 167 | 167 | ||
| 168 | int face_name_id_number ( /* FRAME_PTR, Lisp_Object name */ ); | 168 | int face_name_id_number ( /* FRAME_PTR, Lisp_Object name */ ); |
| @@ -174,7 +174,7 @@ static void ensure_face_ready ( /* FRAME_PTR, int id */ ); | |||
| 174 | void recompute_basic_faces ( /* FRAME_PTR f */ ); | 174 | void recompute_basic_faces ( /* FRAME_PTR f */ ); |
| 175 | static void merge_face_list ( /* FRAME_PTR, struct face *, Lisp_Object */ ); | 175 | static void merge_face_list ( /* FRAME_PTR, struct face *, Lisp_Object */ ); |
| 176 | 176 | ||
| 177 | extern Lisp_Object Qforeground_color, Qbackground_color; | 177 | extern 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 | ||