From a4c7190998680d4e29e60f5387aaf57a3245774e Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 18 Dec 2007 11:37:36 +0000 Subject: [PATCH] (w32font_get_cache): Adjust the argument type. --- src/w32font.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/w32font.c b/src/w32font.c index 3a8ad108a51..3ac6001c181 100644 --- a/src/w32font.c +++ b/src/w32font.c @@ -135,10 +135,10 @@ memq_no_quit (elt, list) 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); } -- 2.39.5