Mercurial > emacs
changeset 91249:4f21471103e6
(ftfont_get_cache): Adjust the argument type.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 18 Dec 2007 11:47:33 +0000 |
parents | ed6fa90c5c89 |
children | 2de541db2c82 |
files | src/ftfont.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ftfont.c Tue Dec 18 11:43:51 2007 +0000 +++ b/src/ftfont.c Tue Dec 18 11:47:33 2007 +0000 @@ -262,7 +262,7 @@ } -static Lisp_Object ftfont_get_cache P_ ((Lisp_Object)); +static Lisp_Object ftfont_get_cache P_ ((FRAME_PTR)); static Lisp_Object ftfont_list P_ ((Lisp_Object, Lisp_Object)); static Lisp_Object ftfont_match P_ ((Lisp_Object, Lisp_Object)); static Lisp_Object ftfont_list_family P_ ((Lisp_Object)); @@ -316,8 +316,8 @@ extern Lisp_Object QCname; static Lisp_Object -ftfont_get_cache (frame) - Lisp_Object frame; +ftfont_get_cache (f) + FRAME_PTR f; { return freetype_font_cache; }