diff options
| author | Richard M. Stallman | 2005-06-17 14:02:03 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-06-17 14:02:03 +0000 |
| commit | c68b9c2ffe50e1245136b6ce15d55a197ed8e708 (patch) | |
| tree | 5f44dd7242cd8bd2aaf9e674c434e9388defa4b3 | |
| parent | 398f0da507158e8cddc5e1ac966f139ee2133f34 (diff) | |
| download | emacs-c68b9c2ffe50e1245136b6ce15d55a197ed8e708.tar.gz emacs-c68b9c2ffe50e1245136b6ce15d55a197ed8e708.zip | |
(spec_glyph_lookup_face): Add declaration.
| -rw-r--r-- | src/dispextern.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index dcf37ceded1..63425e58039 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -366,7 +366,8 @@ struct glyph | |||
| 366 | 366 | ||
| 367 | #define FACE_ID_BITS 21 | 367 | #define FACE_ID_BITS 21 |
| 368 | 368 | ||
| 369 | /* Face of the glyph. */ | 369 | /* Face of the glyph. This is a realized face ID, |
| 370 | an index in the face cache of the frame. */ | ||
| 370 | unsigned face_id : FACE_ID_BITS; | 371 | unsigned face_id : FACE_ID_BITS; |
| 371 | 372 | ||
| 372 | /* Type of font used to display the character glyph. May be used to | 373 | /* Type of font used to display the character glyph. May be used to |
| @@ -2912,6 +2913,7 @@ Lisp_Object sit_for P_ ((int, int, int, int, int)); | |||
| 2912 | void init_display P_ ((void)); | 2913 | void init_display P_ ((void)); |
| 2913 | void syms_of_display P_ ((void)); | 2914 | void syms_of_display P_ ((void)); |
| 2914 | extern Lisp_Object Qredisplay_dont_pause; | 2915 | extern Lisp_Object Qredisplay_dont_pause; |
| 2916 | GLYPH spec_glyph_lookup_face P_ ((struct window *, GLYPH)); | ||
| 2915 | 2917 | ||
| 2916 | /* Defined in term.c */ | 2918 | /* Defined in term.c */ |
| 2917 | 2919 | ||