aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/w32font.c6
1 files 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)
135 Return a cache of font-entities on FRAME. The cache must be a 135 Return a cache of font-entities on FRAME. The cache must be a
136 cons whose cdr part is the actual cache area. */ 136 cons whose cdr part is the actual cache area. */
137Lisp_Object 137Lisp_Object
138w32font_get_cache (frame) 138w32font_get_cache (f)
139 Lisp_Object frame; 139 FRAME_PTR f;
140{ 140{
141 struct w32_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (frame)); 141 struct w32_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
142 142
143 return (dpyinfo->name_list_element); 143 return (dpyinfo->name_list_element);
144} 144}