diff options
| author | Kenichi Handa | 2007-12-18 11:47:33 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2007-12-18 11:47:33 +0000 |
| commit | 771752281dd919fd2d8d579c7cfae5d1d3ae18e3 (patch) | |
| tree | 6870a8c259299c4e95dd4876cb60eb96053298ae /src | |
| parent | dfdf55c0a978af7dedef98afc3ad340eae41e6a2 (diff) | |
| download | emacs-771752281dd919fd2d8d579c7cfae5d1d3ae18e3.tar.gz emacs-771752281dd919fd2d8d579c7cfae5d1d3ae18e3.zip | |
(ftfont_get_cache): Adjust the argument type.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ftfont.c | 6 |
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 | ||
| 265 | static Lisp_Object ftfont_get_cache P_ ((Lisp_Object)); | 265 | static Lisp_Object ftfont_get_cache P_ ((FRAME_PTR)); |
| 266 | static Lisp_Object ftfont_list P_ ((Lisp_Object, Lisp_Object)); | 266 | static Lisp_Object ftfont_list P_ ((Lisp_Object, Lisp_Object)); |
| 267 | static Lisp_Object ftfont_match P_ ((Lisp_Object, Lisp_Object)); | 267 | static Lisp_Object ftfont_match P_ ((Lisp_Object, Lisp_Object)); |
| 268 | static Lisp_Object ftfont_list_family P_ ((Lisp_Object)); | 268 | static Lisp_Object ftfont_list_family P_ ((Lisp_Object)); |
| @@ -316,8 +316,8 @@ struct font_driver ftfont_driver = | |||
| 316 | extern Lisp_Object QCname; | 316 | extern Lisp_Object QCname; |
| 317 | 317 | ||
| 318 | static Lisp_Object | 318 | static Lisp_Object |
| 319 | ftfont_get_cache (frame) | 319 | ftfont_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 | } |