ref: 77f7358533406db47f7a3bd94b5c71c84ec6c911
parent: fdc2d7618a8addfb7f1f4003ae444d14a4d562b0
author: Werner Lemberg <[email protected]>
date: Tue Aug 19 00:53:02 EDT 2008
Formatting.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,25 +1,24 @@
2008-08-18 suzuki toshiya <[email protected]>
- * src/base/ftmac.c: Add a fallback to suppose the availability
- of ResourceIndex type. It is used when built without configure
- (e.g. build by Jam).
+ * src/base/ftmac.c: Add a fallback to guess the availability of the
+ `ResourceIndex' type. It is used when built without configure
+ (e.g., a build with Jam).
* builds/mac/ftmac.c: Ditto.
- * builds/unix/configure.raw: Set HAVE_TYPE_RESOURCE_INDEX
- to 1 or 0 explicitly, even if ResourceIndex is unavailable.
+ * builds/unix/configure.raw: Set HAVE_TYPE_RESOURCE_INDEX to 1 or 0
+ explicitly, even if `ResourceIndex' is unavailable.
2008-08-18 suzuki toshiya <[email protected]>
* builds/unix/configure.raw: In checking of Mac OS X features,
- all-in-one header file "Carbon.h" is replaced by by the minimum
- header file "CoreServices.h", as current src/base/ftmac.c.
+ all-in-one header file `Carbon.h' is replaced by the minimum
+ header file `CoreServices.h', similar to current src/base/ftmac.c.
2008-08-18 suzuki toshiya <[email protected]>
* src/sfnt/ttcmap.c (tt_cmap2_validate): Skip the validation of
- sub-header when its code_count is 0. Many Japanese Dynalab fonts
- include such empty sub-header (code_count == 0, first_code == 0
- delta == 0, but offset != 0 ) as the second sub-header in SJIS
- cmap.
+ sub-header when its code_count is 0. Many Japanese Dynalab fonts
+ include such an empty sub-header (code_count == 0, first_code == 0
+ delta == 0, but offset != 0) as the second sub-header in SJIS cmap.
2008-08-04 Werner Lemberg <[email protected]>
--- a/builds/mac/ftmac.c
+++ b/builds/mac/ftmac.c
@@ -145,18 +145,18 @@
#endif
#endif
- /* configure checks the availability of ResourceIndex strictly */
- /* and set HAVE_TYPE_RESOURCE_INDEX 1 or 0 always. If it is */
- /* not set (e.g. build without configure), the availability */
- /* is supposed from the SDK version but this is uncertain. */
-#if !defined( HAVE_TYPE_RESOURCE_INDEX )
+ /* `configure' checks the availability of `ResourceIndex' strictly */
+ /* and sets HAVE_TYPE_RESOURCE_INDEX to 1 or 0 always. If it is */
+ /* not set (e.g., a build without `configure'), the availability */
+ /* is guessed from the SDK version. */
+#ifndef HAVE_TYPE_RESOURCE_INDEX
#if !defined( MAC_OS_X_VERSION_10_5 ) || \
-# ( MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 )
+ ( MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 )
#define HAVE_TYPE_RESOURCE_INDEX 0
#else
#define HAVE_TYPE_RESOURCE_INDEX 1
#endif
-#endif
+#endif /* !HAVE_TYPE_RESOURCE_INDEX */
#if ( HAVE_TYPE_RESOURCE_INDEX == 0 )
typedef short ResourceIndex;
--- a/src/base/ftmac.c
+++ b/src/base/ftmac.c
@@ -77,21 +77,21 @@
#define OS_INLINE static __inline__
#endif
- /* configure checks the availability of ResourceIndex strictly */
- /* and set HAVE_TYPE_RESOURCE_INDEX 1 or 0 always. If it is */
- /* not set (e.g. build without configure), the availability */
- /* is supposed from the SDK version but this is uncertain. */
-#if !defined( HAVE_TYPE_RESOURCE_INDEX )
+ /* `configure' checks the availability of `ResourceIndex' strictly */
+ /* and sets HAVE_TYPE_RESOURCE_INDEX 1 or 0 always. If it is */
+ /* not set (e.g., a build without `configure'), the availability */
+ /* is guessed from the SDK version. */
+#ifndef HAVE_TYPE_RESOURCE_INDEX
#if !defined( MAC_OS_X_VERSION_10_5 ) || \
-# ( MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 )
+ ( MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 )
#define HAVE_TYPE_RESOURCE_INDEX 0
#else
#define HAVE_TYPE_RESOURCE_INDEX 1
#endif
-#endif
+#endif /* !HAVE_TYPE_RESOURCE_INDEX */
#if ( HAVE_TYPE_RESOURCE_INDEX == 0 )
-typedef short ResourceIndex;
+ typedef short ResourceIndex;
#endif
#include <CoreServices/CoreServices.h>
--- a/src/sfnt/ttcmap.c
+++ b/src/sfnt/ttcmap.c
@@ -328,8 +328,8 @@
delta = TT_NEXT_SHORT( p );
offset = TT_NEXT_USHORT( p );
- /* many Dynalab fonts have empty sub-header */
- if ( 0 == code_count )
+ /* many Dynalab fonts have empty sub-headers */
+ if ( code_count == 0 )
continue;
/* check range within 0..255 */