summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2002-05-21 06:07:36 +0000
committerH. Peter Anvin <hpa@zytor.com>2002-05-21 06:07:36 +0000
commit4c8aaa01b5fea516980421b3cd6d402129eb58c6 (patch)
treea9072e2db13b2acebbb8b084a1682e41992d19c7 /doc
parent078d75ac6326b51977664e7cb6737cc1c381cc08 (diff)
downloadnasm-4c8aaa01b5fea516980421b3cd6d402129eb58c6.tar.gz
nasm-4c8aaa01b5fea516980421b3cd6d402129eb58c6.tar.bz2
nasm-4c8aaa01b5fea516980421b3cd6d402129eb58c6.zip
Fix em dashes which were broken by charset cleanup change
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/genps.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/genps.pl b/doc/genps.pl
index d406ebb..02828c9 100755
--- a/doc/genps.pl
+++ b/doc/genps.pl
@@ -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";