diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2013-08-13 12:18:11 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2013-08-13 12:18:11 +0400 |
commit | a45543bc75e845c9217130c65ddd00a81c18ffd1 (patch) | |
tree | 2d09d300e4d7c211389215e2c991c57162689d47 /src/font.h | |
parent | ae966a860afc2d7ebbb1e96a68c2df3cfbdc2b81 (diff) | |
download | emacs-a45543bc75e845c9217130c65ddd00a81c18ffd1.tar.gz |
* font.c (clear_font_cache): New function, stripped from...
(Fclear_font_cache): ...here, which now uses the function
above. Adjust comment.
* font.h (clear_font_cache): Add prototype.
* xfaces.c (clear_face_cache): Use clear_font_cache.
Diffstat (limited to 'src/font.h')
-rw-r--r-- | src/font.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/font.h b/src/font.h index daeb320c1ab..adb4a582fd8 100644 --- a/src/font.h +++ b/src/font.h @@ -760,6 +760,7 @@ extern Lisp_Object font_load_for_lface (struct frame *f, Lisp_Object *lface, Lisp_Object spec); extern void font_prepare_for_face (struct frame *f, struct face *face); extern void font_done_for_face (struct frame *f, struct face *face); +extern void clear_font_cache (struct frame *); extern Lisp_Object font_open_by_spec (struct frame *f, Lisp_Object spec); extern Lisp_Object font_open_by_name (struct frame *f, Lisp_Object name); |