diff options
author | Karl Berry <karl@freefriends.org> | 2012-12-18 23:36:49 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-12-18 23:36:49 +0000 |
commit | 1974a31de2947366db7142039a5b8dac8e909ed0 (patch) | |
tree | 7f556b23dab9277a632d31decd69480c2c1d33a9 /Master | |
parent | 2dcf4d3acd844f938fa3792188a5dd7a30009fff (diff) |
sync
git-svn-id: svn://tug.org/texlive/trunk@28576 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/fonts/map/glyphlist/texglyphlist.txt | 9 | ||||
-rwxr-xr-x | Master/tlpkg/bin/check-files-by-format | 7 | ||||
-rwxr-xr-x | Master/tlpkg/libexec/place | 5 |
3 files changed, 14 insertions, 7 deletions
diff --git a/Master/texmf-dist/fonts/map/glyphlist/texglyphlist.txt b/Master/texmf-dist/fonts/map/glyphlist/texglyphlist.txt index 8d5ef05fad9..b9c5fa9af0f 100644 --- a/Master/texmf-dist/fonts/map/glyphlist/texglyphlist.txt +++ b/Master/texmf-dist/fonts/map/glyphlist/texglyphlist.txt @@ -1,4 +1,4 @@ -# lcdf-typetools texglyphlist.txt, Version 2.84 +# lcdf-typetools texglyphlist.txt, Version 2.95 # Contents: Extensions to the Adobe Glyph List for TeX fonts and # encodings. We also extend the second field so that it can contain # multiple Unicode scalar values, separated by commas, analogous to @@ -45,6 +45,7 @@ circledivide;2298 circledot;2299 circleminus;2296 coproduct;2A3F +ct;0063 0074 # cwm: Unicode for ZWNJ, used for secondary replacement from EC.enc cwm;200C dblbracketleft;27E6 @@ -76,6 +77,11 @@ interrobangdown;2E18 intersectionsq;2293 latticetop;22A4 lessmuch;226A +longdbls;017F 017F +longsh;017F 0068 +longsi;017F 0069 +longsl;017F 006C +longst;FB05,017F 0074 lscript;2113 natural;266E negationslash;0338 @@ -98,6 +104,7 @@ sharp;266F similarequal;2243 slurabove;2322 slurbelow;2323 +st;FB06,0073 0074 star;22C6 subsetsqequal;2291 supersetsqequal;2292 diff --git a/Master/tlpkg/bin/check-files-by-format b/Master/tlpkg/bin/check-files-by-format index 01a02e20689..d6791ca5b52 100755 --- a/Master/tlpkg/bin/check-files-by-format +++ b/Master/tlpkg/bin/check-files-by-format @@ -247,13 +247,14 @@ sub exclude_value { # check a pdf file sub check_pdf { my ($file) = @_; - return if exclude_value($exclude_pfb, $file) < 0; + my $excl_val = exclude_value($exclude_pfb, $file) || 0; + return if $excl_val < 0; + # my $errfile = "$tmpdir/pdferr"; unlink($errfile); my $bad_exit = system("pdfinfo $tlroot/$file >/dev/null 2>$errfile"); my $badness = $bad_exit ? 2 : -s $errfile ? 1 : 0; - my $limit = exclude_value($exclude_pdf, $file) || 0; - return if $badness <= $limit; + return if $badness <= $excl_val; print "Broken PDF: $file\n" if $badness == 2; print "Damaged PDF: $file\n" if $badness == 1; } diff --git a/Master/tlpkg/libexec/place b/Master/tlpkg/libexec/place index be361165abf..4cc5a0a1028 100755 --- a/Master/tlpkg/libexec/place +++ b/Master/tlpkg/libexec/place @@ -303,9 +303,8 @@ sub compare_disk_vs_tlpobj { } } - print "\n*** not matched in new tlp: ", - join ("\n ", sort keys %files_on_disk), - "\n" + print "\n*** not matched in new tlp:\n", + map (" $_\n", sort keys %files_on_disk) if keys %files_on_disk; } |