diff --git a/Changes b/Changes index 2ce3868..e5422d7 100644 --- a/Changes +++ b/Changes @@ -3,6 +3,7 @@ New features: o Embed TrueType fonts with -font-ttf for -add-text et al. +o Embed the 14 standard fonts o Add links to parts of text with -add-text as %URL[|]. Extended features: diff --git a/cpdftruetype.ml b/cpdftruetype.ml index 0656aba..3199891 100644 --- a/cpdftruetype.ml +++ b/cpdftruetype.ml @@ -65,8 +65,6 @@ let read_format_6_encoding_table b = let firstCode = read_ushort b in let entryCount = read_ushort b in let t = null_hash () in - (* FIXME: This format can address glyphs > 255, but we don't support that - elsewhere yet --- but we read the whole format table nonethless *) try for x = firstCode to firstCode + entryCount - 1 do Hashtbl.add t x (read_ushort b)