aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2007-12-18 11:47:33 +0000
committerKenichi Handa2007-12-18 11:47:33 +0000
commit771752281dd919fd2d8d579c7cfae5d1d3ae18e3 (patch)
tree6870a8c259299c4e95dd4876cb60eb96053298ae /src
parentdfdf55c0a978af7dedef98afc3ad340eae41e6a2 (diff)
downloademacs-771752281dd919fd2d8d579c7cfae5d1d3ae18e3.tar.gz
emacs-771752281dd919fd2d8d579c7cfae5d1d3ae18e3.zip
(ftfont_get_cache): Adjust the argument type.
Diffstat (limited to 'src')
-rw-r--r--src/ftfont.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ftfont.c b/src/ftfont.c
index 11715fbbfff..2c8d899a620 100644
--- a/src/ftfont.c
+++ b/src/ftfont.c
@@ -262,7 +262,7 @@ ftfont_list_generic_family (spec, frame, registry)
262} 262}
263 263
264 264
265static Lisp_Object ftfont_get_cache P_ ((Lisp_Object)); 265static Lisp_Object ftfont_get_cache P_ ((FRAME_PTR));
266static Lisp_Object ftfont_list P_ ((Lisp_Object, Lisp_Object)); 266static Lisp_Object ftfont_list P_ ((Lisp_Object, Lisp_Object));
267static Lisp_Object ftfont_match P_ ((Lisp_Object, Lisp_Object)); 267static Lisp_Object ftfont_match P_ ((Lisp_Object, Lisp_Object));
268static Lisp_Object ftfont_list_family P_ ((Lisp_Object)); 268static Lisp_Object ftfont_list_family P_ ((Lisp_Object));
@@ -316,8 +316,8 @@ struct font_driver ftfont_driver =
316extern Lisp_Object QCname; 316extern Lisp_Object QCname;
317 317
318static Lisp_Object 318static Lisp_Object
319ftfont_get_cache (frame) 319ftfont_get_cache (f)
320 Lisp_Object frame; 320 FRAME_PTR f;
321{ 321{
322 return freetype_font_cache; 322 return freetype_font_cache;
323} 323}