summaryrefslogtreecommitdiff
path: root/doc/genpsdriver.pl
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2002-05-22 23:23:02 +0000
committerH. Peter Anvin <hpa@zytor.com>2002-05-22 23:23:02 +0000
commitf8ab4baba131d231b74dfa868e50c0b52a3ccacd (patch)
tree0f8726b402739d952cbf3e789ec75367bbcb5bba /doc/genpsdriver.pl
parent52c9ad7b3c0842b24b30e75a8b3b9679c36086a3 (diff)
downloadnasm-f8ab4baba131d231b74dfa868e50c0b52a3ccacd.tar.gz
Change space to NBSP to avoid breakage on 'doze platforms
Diffstat (limited to 'doc/genpsdriver.pl')
-rw-r--r--doc/genpsdriver.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/genpsdriver.pl b/doc/genpsdriver.pl
index eac4c988..68cbc28b 100644
--- a/doc/genpsdriver.pl
+++ b/doc/genpsdriver.pl
@@ -24,4 +24,6 @@ $version = <VERSION>;
chomp $version;
close(VERSION);
-system($perl, $genps, '-subtitle', 'version '.$version, 'nasmdoc.dip');
+# \240 = no-break space, see @NASMEncoding in genps.pl.
+# If we use a normal space, it breaks on 'doze platforms...
+system($perl, $genps, '-subtitle', "version\240".$version, 'nasmdoc.dip');