[cache] Fold too long lines.

This commit is contained in:
suzuki toshiya 2009-09-29 03:19:47 +09:00
parent 82633a2440
commit 6167357e8f
2 changed files with 16 additions and 7 deletions

View File

@ -726,7 +726,8 @@
if ( error ) if ( error )
goto Exit; goto Exit;
*ansbit = FTC_SNODE( node )->sbits + ( gindex - FTC_GNODE( node )->gindex ); *ansbit = FTC_SNODE( node )->sbits +
( gindex - FTC_GNODE( node )->gindex );
if ( anode ) if ( anode )
{ {
@ -788,7 +789,8 @@
if ( error ) if ( error )
goto Exit; goto Exit;
*ansbit = FTC_SNODE( node )->sbits + ( gindex - FTC_GNODE( node )->gindex ); *ansbit = FTC_SNODE( node )->sbits +
( gindex - FTC_GNODE( node )->gindex );
if ( anode ) if ( anode )
{ {

17
src/cache/ftccmap.c vendored
View File

@ -378,13 +378,16 @@
if ( error ) if ( error )
goto Exit; goto Exit;
FT_ASSERT( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first ) < FTC_CMAP_INDICES_MAX ); FT_ASSERT( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first ) <
FTC_CMAP_INDICES_MAX );
/* something rotten can happen with rogue clients */ /* something rotten can happen with rogue clients */
if ( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first >= FTC_CMAP_INDICES_MAX ) ) if ( (FT_UInt)( char_code - FTC_CMAP_NODE( node )->first >=
FTC_CMAP_INDICES_MAX ) )
return 0; return 0;
gindex = FTC_CMAP_NODE( node )->indices[char_code - FTC_CMAP_NODE( node )->first]; gindex = FTC_CMAP_NODE( node )->indices[char_code -
FTC_CMAP_NODE( node )->first];
if ( gindex == FTC_CMAP_UNKNOWN ) if ( gindex == FTC_CMAP_UNKNOWN )
{ {
FT_Face face; FT_Face face;
@ -392,7 +395,9 @@
gindex = 0; gindex = 0;
error = FTC_Manager_LookupFace( cache->manager, FTC_CMAP_NODE( node )->face_id, &face ); error = FTC_Manager_LookupFace( cache->manager,
FTC_CMAP_NODE( node )->face_id,
&face );
if ( error ) if ( error )
goto Exit; goto Exit;
@ -413,7 +418,9 @@
FT_Set_Charmap( face, old ); FT_Set_Charmap( face, old );
} }
FTC_CMAP_NODE( node )->indices[char_code - FTC_CMAP_NODE( node )->first] = (FT_UShort)gindex; FTC_CMAP_NODE( node )->indices[char_code -
FTC_CMAP_NODE( node )->first]
= (FT_UShort)gindex;
} }
Exit: Exit: