diff options
| author | Jim Blandy | 1993-06-19 01:08:14 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-19 01:08:14 +0000 |
| commit | 415445e2ba2493e3b575520a0b9774e983579c8d (patch) | |
| tree | a668d9e003e42e0f015eb1a75106bba2c9f2bb9b /src | |
| parent | 76c881b0156bf38c188aec63909b228212088267 (diff) | |
| download | emacs-415445e2ba2493e3b575520a0b9774e983579c8d.tar.gz emacs-415445e2ba2493e3b575520a0b9774e983579c8d.zip | |
* xfaces.c: Add forward declaration for recompute_basic_faces.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 8a00ece903d..28183d29aaf 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -157,11 +157,12 @@ int region_face; | |||
| 157 | 157 | ||
| 158 | Lisp_Object Qface, Qwindow, Qpriority; | 158 | Lisp_Object Qface, Qwindow, Qpriority; |
| 159 | 159 | ||
| 160 | static void build_face (); | 160 | static void build_face ( /* FRAME_PTR, struct face * */ ); |
| 161 | int face_name_id_number (); | 161 | int face_name_id_number ( /* FRAME_PTR, Lisp_Object name */ ); |
| 162 | 162 | ||
| 163 | struct face *intern_face (); | 163 | struct face *intern_face ( /* FRAME_PTR, struct face * */ ); |
| 164 | static void ensure_face_ready (); | 164 | static void ensure_face_ready ( /* FRAME_PTR, int id */ ); |
| 165 | static void recompute_basic_faces ( /* FRAME_PTR f */ ); | ||
| 165 | 166 | ||
| 166 | /* Allocating, copying, and comparing struct faces. */ | 167 | /* Allocating, copying, and comparing struct faces. */ |
| 167 | 168 | ||