aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2007-12-18 11:36:22 +0000
committerKenichi Handa2007-12-18 11:36:22 +0000
commit69ea039a00ab81667c4efbe5b6295f0d55420156 (patch)
tree72e186111c6cad8b9ffe781cd53644b1640439f2 /src
parent173f0ce2562b2069602317715b3be5d139385663 (diff)
downloademacs-69ea039a00ab81667c4efbe5b6295f0d55420156.tar.gz
emacs-69ea039a00ab81667c4efbe5b6295f0d55420156.zip
(struct font_driver): Change argument type of get_cache.
Diffstat (limited to 'src')
-rw-r--r--src/font.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/font.h b/src/font.h
index 28845fab2ec..0a1d0ebe8f2 100644
--- a/src/font.h
+++ b/src/font.h
@@ -313,9 +313,9 @@ struct font_driver
313 /* Symbol indicating the type of the font-driver. */ 313 /* Symbol indicating the type of the font-driver. */
314 Lisp_Object type; 314 Lisp_Object type;
315 315
316 /* Return a cache of font-entities on FRAME. The cache must be a 316 /* Return a cache of font-entities on frame F. The cache must be a
317 cons whose cdr part is the actual cache area. */ 317 cons whose cdr part is the actual cache area. */
318 Lisp_Object (*get_cache) P_ ((Lisp_Object frame)); 318 Lisp_Object (*get_cache) P_ ((FRAME_PTR F));
319 319
320 /* List fonts exactly matching with FONT_SPEC on FRAME. The value 320 /* List fonts exactly matching with FONT_SPEC on FRAME. The value
321 is a vector of font-entities. This is the sole API that 321 is a vector of font-entities. This is the sole API that