diff options
| author | Kenichi Handa | 2007-12-18 11:37:36 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2007-12-18 11:37:36 +0000 |
| commit | a4c7190998680d4e29e60f5387aaf57a3245774e (patch) | |
| tree | c93d1e5ef25bdca637f51d8017c16e1b677dd6d1 /src | |
| parent | feb2737b548602aeee27d63678ce31546b3e960e (diff) | |
| download | emacs-a4c7190998680d4e29e60f5387aaf57a3245774e.tar.gz emacs-a4c7190998680d4e29e60f5387aaf57a3245774e.zip | |
(w32font_get_cache): Adjust the argument type.
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32font.c | 6 |
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. */ |
| 137 | Lisp_Object | 137 | Lisp_Object |
| 138 | w32font_get_cache (frame) | 138 | w32font_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 | } |