diff options
author | Karl Berry <karl@freefriends.org> | 2023-10-05 19:40:44 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-10-05 19:40:44 +0000 |
commit | f4d0a9cfba30f6982febe7dd08be23573b0e1c55 (patch) | |
tree | 581514d5c4b66e18d0728bcce94a780c1ace8f96 /Master/texmf-dist/scripts | |
parent | 9872f149048296ab207386f967697abb5b30450c (diff) |
pdfjam (5oct23)
git-svn-id: svn://tug.org/texlive/trunk@68457 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/pdfjam/pdfjam | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/pdfjam/pdfjam b/Master/texmf-dist/scripts/pdfjam/pdfjam index cd6ea75cbe3..04099e3917b 100755 --- a/Master/texmf-dist/scripts/pdfjam/pdfjam +++ b/Master/texmf-dist/scripts/pdfjam/pdfjam @@ -1,5 +1,5 @@ #!/bin/sh -version=3.08 +version=3.09 ######################################################################### ## ## ## pdfjam: A shell-script interface to the "pdfpages" LaTeX package ## @@ -1151,7 +1151,7 @@ select_pdfinfo () { } echo_hex_iconv_utf16be () { printf '%s' "$1" | \ - "$iconv" -f utf8 -t utf16be | \ + "$iconv" -f UTF-8 -t UTF-16BE | \ od -An -v -tx1 | \ tr -d '[:space:]' } @@ -1172,7 +1172,7 @@ if test "$keepinfo" = true ; then fi echo_iconv_from_enc () { printf '%s' "$2" | \ - "$iconv" -f "$1" -t utf8 + "$iconv" -f "$1" -t UTF-8 } if test -n "$pdfTitle" ; then pdftitl=$(echo_iconv_from_enc "$enc" "$pdfTitle") |