From aea07ccdba65fd0fbcc987b4eacd9f94bbd02029 Mon Sep 17 00:00:00 2001 From: Tom Kacvinsky Date: Thu, 9 Aug 2001 01:13:43 +0000 Subject: [PATCH] Changed function get_cff_glyph_name to cff_get_glyph_name for consistency. Minor documentation change for function cff_get_glyph_index. --- src/cff/cffdrivr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cff/cffdrivr.c b/src/cff/cffdrivr.c index 559a6c90e..76f04abbc 100644 --- a/src/cff/cffdrivr.c +++ b/src/cff/cffdrivr.c @@ -222,7 +222,7 @@ /*************************************************************************/ static FT_Error - get_cff_glyph_name( CFF_Face face, + cff_get_glyph_name( CFF_Face face, FT_UInt glyph_index, FT_Pointer buffer, FT_UInt buffer_max ) @@ -327,7 +327,7 @@ /* a given glyph name's glyph index. */ /* */ /* */ - /* charmap :: A handle to the source face object. */ + /* face :: A handle to the source face object. */ /* glyph_name :: The glyph name. */ /* */ /* */ @@ -387,7 +387,7 @@ #ifndef FT_CONFIG_OPTION_NO_GLYPH_NAMES if ( strcmp( (const char*)interface, "glyph_name" ) == 0 ) - return (FT_Module_Interface)get_cff_glyph_name; + return (FT_Module_Interface)cff_get_glyph_name; if ( strcmp( (const char*)interface, "name_index" ) == 0 ) return (FT_Module_Interface)cff_get_name_index;