# HG changeset patch # User Kenichi Handa # Date 1197977856 0 # Node ID 3a1805edf0b57a0b6f0d89765ef53f31c4c37278 # Parent 26541bdcecd09c041f850353278271bf915c7207 (w32font_get_cache): Adjust the argument type. diff -r 26541bdcecd0 -r 3a1805edf0b5 src/w32font.c --- 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); }