* src/base/ftdebug.c (ft_debug_init): Highest debug level is 7, not 6.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
diff --git a/ChangeLog b/ChangeLog
index 56544f3..d001c83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-03 Werner Lemberg <wl@gnu.org>
+
+ * src/base/ftdebug.c (ft_debug_init): Highest debug level is 7,
+ not 6.
+
2004-08-30 Werner Lemberg <wl@gnu.org>
* include/freetype/tttags.h (TTAG_BASE, TTAG_GDEF, TTAG_GPOS,
diff --git a/devel/ftoption.h b/devel/ftoption.h
index eaad2b6..177e40a 100644
--- a/devel/ftoption.h
+++ b/devel/ftoption.h
@@ -446,7 +446,7 @@ FT_BEGIN_HEADER
/* work-around hinting system. Note that for the moment, the algorithm */
/* is only used when selected at runtime through the parameter tag */
/* FT_PARAM_TAG_UNPATENTED_HINTING; or when the debug hook */
- /* FT_DEBUG_HOOK_UNPATENTED_HINTING is globally actived */
+ /* FT_DEBUG_HOOK_UNPATENTED_HINTING is globally activated. */
/* */
#define TT_CONFIG_OPTION_UNPATENTED_HINTING
diff --git a/include/freetype/config/ftoption.h b/include/freetype/config/ftoption.h
index 028c6ea..7800eb8 100644
--- a/include/freetype/config/ftoption.h
+++ b/include/freetype/config/ftoption.h
@@ -446,7 +446,7 @@ FT_BEGIN_HEADER
/* work-around hinting system. Note that for the moment, the algorithm */
/* is only used when selected at runtime through the parameter tag */
/* FT_PARAM_TAG_UNPATENTED_HINTING; or when the debug hook */
- /* FT_DEBUG_HOOK_UNPATENTED_HINTING is globally actived */
+ /* FT_DEBUG_HOOK_UNPATENTED_HINTING is globally actived. */
/* */
#define TT_CONFIG_OPTION_UNPATENTED_HINTING
diff --git a/include/freetype/ftcache.h b/include/freetype/ftcache.h
index c26ce6b..985641c 100644
--- a/include/freetype/ftcache.h
+++ b/include/freetype/ftcache.h
@@ -86,14 +86,6 @@ FT_BEGIN_HEADER
/* FTC_CMapCache_New */
/* FTC_CMapCache_Lookup */
/* */
- /* */
- /* FTC_Image_Desc */
- /* FTC_Image_Cache */
- /* FTC_Image_Cache_Lookup */
- /* */
- /* FTC_SBit_Cache */
- /* FTC_SBit_Cache_Lookup */
- /* */
/*************************************************************************/
diff --git a/src/base/ftdebug.c b/src/base/ftdebug.c
index a6c1841..95f3dbf 100644
--- a/src/base/ftdebug.c
+++ b/src/base/ftdebug.c
@@ -125,17 +125,17 @@
/* value of the `FT2_DEBUG' environment variable. It must be a list of */
/* toggles, separated by spaces, `;', or `,'. Example: */
/* */
- /* export FT2_DEBUG="any:3 memory:6 stream:5" */
+ /* export FT2_DEBUG="any:3 memory:7 stream:5" */
/* */
/* This requests that all levels be set to 3, except the trace level for */
- /* the memory and stream components which are set to 6 and 5, */
+ /* the memory and stream components which are set to 7 and 5, */
/* respectively. */
/* */
/* See the file <include/freetype/internal/fttrace.h> for details of the */
/* available toggle names. */
/* */
- /* The level must be between 0 and 6; 0 means quiet (except for serious */
- /* runtime errors), and 6 means _very_ verbose. */
+ /* The level must be between 0 and 7; 0 means quiet (except for serious */
+ /* runtime errors), and 7 means _very_ verbose. */
/* */
FT_BASE_DEF( void )
ft_debug_init( void )
@@ -189,7 +189,7 @@
if ( *p )
{
level = *p++ - '0';
- if ( level < 0 || level > 6 )
+ if ( level < 0 || level > 7 )
level = -1;
}