Mercurial > emacs
changeset 91246:3a1805edf0b5
(w32font_get_cache): Adjust the argument type.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 18 Dec 2007 11:37:36 +0000 |
parents | 26541bdcecd0 |
children | 217eabc2db11 |
files | src/w32font.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/w32font.c Tue Dec 18 11:37:05 2007 +0000 +++ b/src/w32font.c Tue Dec 18 11:37:36 2007 +0000 @@ -135,10 +135,10 @@ Return a cache of font-entities on FRAME. The cache must be a cons whose cdr part is the actual cache area. */ Lisp_Object -w32font_get_cache (frame) - Lisp_Object frame; +w32font_get_cache (f) + FRAME_PTR f; { - struct w32_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (frame)); + struct w32_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); return (dpyinfo->name_list_element); }