From: Kenichi Handa Date: Tue, 18 Dec 2007 11:37:36 +0000 (+0000) Subject: (w32font_get_cache): Adjust the argument type. X-Git-Tag: emacs-pretest-23.0.90~8295^2~122 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a4c7190998680d4e29e60f5387aaf57a3245774e;p=emacs.git (w32font_get_cache): Adjust the argument type. --- 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); }