Fix em dashes which were broken by charset cleanup change

This commit is contained in:
H. Peter Anvin 2002-05-21 06:07:36 +00:00
parent 078d75ac63
commit 4c8aaa01b5

View File

@ -1048,10 +1048,10 @@ $ps_page = 0;
# Title page
ps_start_page();
$title = $metadata{'title'} || '';
$title =~ s/ \- / $emdash /;
$title =~ s/ \- / $charcode{'emdash'} /;
$subtitle = $metadata{'subtitle'} || '';
$subtitle =~ s/ \- / $emdash /;
$subtitle =~ s/ \- / $charcode{'emdash'} /;
# Print title
print "/ti ", ps_string($title), " def\n";