diff options
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/updmap.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/texlive/updmap.pl b/Master/texmf-dist/scripts/texlive/updmap.pl index 5c5fc08757f..b19a5a49dd1 100755 --- a/Master/texmf-dist/scripts/texlive/updmap.pl +++ b/Master/texmf-dist/scripts/texlive/updmap.pl @@ -3,7 +3,7 @@ # updmap - maintain map files for outline fonts. # (Maintained in TeX Live:Master/texmf-dist/scripts/texlive.) # -# Copyright 2011-2017 Norbert Preining +# Copyright 2011-2019 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. # @@ -875,7 +875,7 @@ sub cidx2dvips { # make everything single spaced s/\s\s*/ /g; # unicode encoded fonts are not supported - next if (m!^\w\w* unicode !); + next if (m!^[\w-][\w-]* unicode !); # now we have the following format # <word> <word> <word> some options like -e or -s if ($_ !~ m/([^ ][^ ]*) ([^ ][^ ]*) ([^ ][^ ]*)( (.*))?$/) { |