diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fontset.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/fontset.h b/src/fontset.h index 8d21bd7a511..e14d0cffda4 100644 --- a/src/fontset.h +++ b/src/fontset.h | |||
| @@ -124,7 +124,7 @@ struct font_info | |||
| 124 | /* A value which may appear in the member encoding of struch font_info | 124 | /* A value which may appear in the member encoding of struch font_info |
| 125 | indicating that a font itself doesn't tell which encoding to be | 125 | indicating that a font itself doesn't tell which encoding to be |
| 126 | used. */ | 126 | used. */ |
| 127 | #define FONT_ENCODING_NOT_DECIDED 4 | 127 | #define FONT_ENCODING_NOT_DECIDED 255 |
| 128 | 128 | ||
| 129 | #define FONT_NOT_OPENED -1 | 129 | #define FONT_NOT_OPENED -1 |
| 130 | #define FONT_NOT_FOUND -2 | 130 | #define FONT_NOT_FOUND -2 |
| @@ -200,6 +200,11 @@ extern struct font_info *(*query_font_func) P_ ((struct frame *f, char *name)); | |||
| 200 | extern void (*set_frame_fontset_func) P_ ((struct frame *f, Lisp_Object arg, | 200 | extern void (*set_frame_fontset_func) P_ ((struct frame *f, Lisp_Object arg, |
| 201 | Lisp_Object oldval)); | 201 | Lisp_Object oldval)); |
| 202 | 202 | ||
| 203 | /* To find a CCL program, fs_load_font calls this function. | ||
| 204 | The argument is a pointer to the struct font_info. | ||
| 205 | This function set the memer `encoder' of the structure. */ | ||
| 206 | extern void (*find_ccl_program_func) P_ ((struct font_info *)); | ||
| 207 | |||
| 203 | /* Check if any window system is used now. */ | 208 | /* Check if any window system is used now. */ |
| 204 | extern void (*check_window_system_func) P_ ((void)); | 209 | extern void (*check_window_system_func) P_ ((void)); |
| 205 | 210 | ||
| @@ -209,7 +214,7 @@ extern struct font_info *fs_load_font P_ ((struct frame *, struct font_info *, | |||
| 209 | int, char *, int)); | 214 | int, char *, int)); |
| 210 | extern int fs_query_fontset P_ ((struct frame *, char *)); | 215 | extern int fs_query_fontset P_ ((struct frame *, char *)); |
| 211 | extern int fs_register_fontset P_ ((struct frame *, Lisp_Object)); | 216 | extern int fs_register_fontset P_ ((struct frame *, Lisp_Object)); |
| 212 | EXFUN (Fquery_fontset, 1); | 217 | EXFUN (Fquery_fontset, 2); |
| 213 | extern Lisp_Object list_fontsets P_ ((struct frame *, Lisp_Object, int)); | 218 | extern Lisp_Object list_fontsets P_ ((struct frame *, Lisp_Object, int)); |
| 214 | extern Lisp_Object Vglobal_fontset_alist; | 219 | extern Lisp_Object Vglobal_fontset_alist; |
| 215 | 220 | ||