Formatting; removing tabs.

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

View File

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

View File

@ -287,7 +287,7 @@
/* do we have outlines in there? */
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;
#ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS

View File

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