ref: 65d328ead72f934c98243a0da5cfd70b9424e5bf
parent: 1ae67a2e0c9d41831abaad6fb8e9d062c265b62c
author: Werner Lemberg <[email protected]>
date: Fri Feb 2 22:00:06 EST 2001
formatting, ChangeLog entry
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,19 +1,24 @@
2001-02-01 David Turner <[email protected]>
- * docs/docmaker.py: improved the index sorting routine to place capital
- letters before small ones. added the "<order>" marker to section blocks
- in order to give the order of blocks
+ * docs/docmaker.py: Improved the index sorting routine to place
+ capital letters before small ones. Added the "<order>" marker to
+ section blocks in order to give the order of blocks.
+2001-01-30 Antoine Leca <[email protected]>
+
+ * include/freetype/ttnameid.h: Latest updates to Microsoft language
+ ID codes.
+
2001-01-24 Tom Kacvinsky <[email protected]>
* src/cff/t1load.c (parse_font_matrix): Added heuristic to get
units_per_EM from the font matrix.
- (parse_dict): Deleted test to see if the FontInfo keyword has been
- seen. Deletion of this test allows fonts without FontInfo
+ (parse_dict): Deleted test to see whether the FontInfo keyword has
+ been seen. Deletion of this test allows fonts without FontInfo
dictionaries to be parsed by the Type 1 driver.
- (T1_Open_Face): deleted empty subroutines array test to make sure
+ (T1_Open_Face): Deleted empty subroutines array test to make sure
fonts with no subroutines still are parsed.
2001-01-17 Francesco Zappa Nardelli <[email protected]>
--- a/docs/docmaker.py
+++ b/docs/docmaker.py
@@ -59,11 +59,10 @@
current_section = None
-# this function is used to sort the index. it's a simple lexicographical
-# sort, except that it places capital letters before small ones
+# This function is used to sort the index. It's a simple lexicographical
+# sort, except that it places capital letters before small ones.
#
def index_sort( s1, s2 ):
-
if not s1:
return -1
@@ -70,12 +69,12 @@
if not s2:
return 1
- l1 = len(s1)
- l2 = len(s2)
- m1 = string.lower(s1)
- m2 = string.lower(s2)
+ l1 = len( s1 )
+ l2 = len( s2 )
+ m1 = string.lower( s1 )
+ m2 = string.lower( s2 )
- for i in range(l1):
+ for i in range( l1 ):
if i >= l2 or m1[i] > m2[i]:
return 1
@@ -921,12 +920,14 @@
else:
section.title = "UNKNOWN_SECTION_TITLE!"
- # sort section elements according to the <order> marker when
+ # sort section elements according to the <order> marker if
# available
+ #
for section in self.sections.values():
order = section.block.find_content( "order" )
if order:
- #sys.stderr.write( "<order> found at "+section.block.location()+'\n' )
+ # sys.stderr.write( "<order> found at "
+ # + section.block.location() + '\n' )
order_list = []
for item in order.items:
for element in item[1]:
@@ -934,9 +935,10 @@
try:
words = element.get_words()
except:
- sys.stderr.write( "WARNING:" +
- section.block.location() +
- ": invalid content in <order> marker\n" )
+ sys.stderr.write(
+ "WARNING:" +
+ section.block.location() +
+ ": invalid content in <order> marker\n" )
if words:
for word in words:
block = self.identifiers.get( word )
@@ -944,13 +946,18 @@
if block.section == section:
order_list.append( word )
else:
- sys.stderr.write( "WARNING:" +
- section.block.location() +
- ": invalid reference to '"+word+"' defined in other section\n" )
+ sys.stderr.write(
+ "WARNING:" +
+ section.block.location() +
+ ": invalid reference to '" +
+ word +
+ "' defined in other section\n" )
else:
- sys.stderr.write( "WARNING:" +
- section.block.location() +
- ": invalid reference to '"+word+"'\n" )
+ sys.stderr.write(
+ "WARNING:" +
+ section.block.location() +
+ ": invalid reference to '" +
+ word + "'\n" )
# now sort the list of blocks according to the order list
#
@@ -1056,7 +1063,6 @@
-
# Filter a given list of DocBlocks. Returns a new list
# of DocBlock objects that only contains element whose
# "type" (i.e. first marker) is in the "types" parameter.
@@ -1131,7 +1137,7 @@
"""parse a file and extract comments blocks from it"""
file_list = []
- #sys.stderr.write( repr( sys.argv[1:] ) + '\n' )
+ # sys.stderr.write( repr( sys.argv[1:] ) + '\n' )
for pathname in sys.argv[1:]:
if string.find( pathname, '*' ) >= 0:
--- a/include/freetype/fttypes.h
+++ b/include/freetype/fttypes.h
@@ -49,19 +49,6 @@
/* FT_Byte FT_Char FT_Int FT_UInt FT_Short FT_UShort FT_Long */
/* FT_ULong FT_Fixed FT_Pointer FT_Vector FT_Matrix FT_BBox */
/* */
- /* */
- /* */
- /* */
- /* */
- /* */
- /* */
- /* */
- /* */
- /* */
- /* */
- /* */
- /* */
- /* */
/*************************************************************************/