Formatting; removing tabs.

This commit is contained in:
Werner Lemberg 2000-11-13 16:58:01 +00:00
parent b5274f557d
commit 34e52707f0
3 changed files with 21 additions and 21 deletions

View File

@ -1,11 +1,10 @@
2000-11-12 Tom Kacvinsky <tjk@ams.org> 2000-11-12 Tom Kacvinsky <tjk@ams.org>
* src/sfnt/ttload.c: Change tracing output in functions * src/sfnt/ttload.c (TT_LookUp_Table, TT_Load_Generic_Table): Change
TT_LookUp_Table and TT_Load_Generic_Table. Change comments tracing output.
preceding TT_Load_Generic_Table.
* src/sfnt/sfobjs.c: In function SFNT_Load_Face, set boolean * src/sfnt/sfobjs.c (SFNT_Load_Face): Set boolean variable
variable has-outline to true only if the font has a `glyf' or `has-outline' to true only if the font has a `glyf' or `CFF ' table.
`CFF ' table.
2000-11-11 Werner Lemberg <wl@gnu.org> 2000-11-11 Werner Lemberg <wl@gnu.org>
@ -27,8 +26,8 @@
* builds/unix/unix-def.in: Add * builds/unix/unix-def.in: Add
INSTALL_PROGRAM := @INSTALL_PROGRAM@ INSTALL_PROGRAM := @INSTALL_PROGRAM@
INSTALL_SCRIPT := @INSTALL_SCRIPT@ INSTALL_SCRIPT := @INSTALL_SCRIPT@
so that installation of freetype-config does not fail. so that installation of freetype-config does not fail.

View File

@ -287,7 +287,7 @@
/* do we have outlines in there? */ /* do we have outlines in there? */
has_outline = ( ( TT_LookUp_Table( face, TTAG_glyf ) != 0 ) || has_outline = ( ( TT_LookUp_Table( face, TTAG_glyf ) != 0 ) ||
( TT_LookUp_Table( face, TTAG_CFF ) != 0 ) ); ( TT_LookUp_Table( face, TTAG_CFF ) != 0 ) );
is_apple_sbit = 0; is_apple_sbit = 0;
#ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS #ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS

View File

@ -70,11 +70,11 @@
FT_TRACE3(( "TT_LookUp_Table: %08p, `%c%c%c%c' -- ", FT_TRACE3(( "TT_LookUp_Table: %08p, `%c%c%c%c' -- ",
face, face,
(FT_Char)( tag >> 24 ), (FT_Char)( tag >> 24 ),
(FT_Char)( tag >> 16 ), (FT_Char)( tag >> 16 ),
(FT_Char)( tag >> 8 ), (FT_Char)( tag >> 8 ),
(FT_Char)( tag ) )); (FT_Char)( tag ) ));
entry = face->dir_tables; entry = face->dir_tables;
limit = entry + face->num_tables; limit = entry + face->num_tables;
@ -83,7 +83,7 @@
{ {
if ( entry->Tag == tag ) if ( entry->Tag == tag )
{ {
FT_TRACE3(( "found table.\n" )); FT_TRACE3(( "found table.\n" ));
return entry; return entry;
} }
} }
@ -498,12 +498,13 @@
}; };
FT_TRACE2(( "TT_Load_Generic_Header: %08p, looking up font table `%c%c%c%c'.\n", FT_TRACE2(( "TT_Load_Generic_Header: "
face, "%08p, looking up font table `%c%c%c%c'.\n",
(FT_Char)( tag >> 24 ), face,
(FT_Char)( tag >> 16 ), (FT_Char)( tag >> 24 ),
(FT_Char)( tag >> 8 ), (FT_Char)( tag >> 16 ),
(FT_Char)( tag ) )); (FT_Char)( tag >> 8 ),
(FT_Char)( tag ) ));
error = face->goto_table( face, tag, stream, 0 ); error = face->goto_table( face, tag, stream, 0 );
if ( error ) if ( error )