Change space to NBSP to avoid breakage on 'doze platforms
authorH. Peter Anvin <hpa@zytor.com>
Wed, 22 May 2002 23:23:02 +0000 (23:23 +0000)
committerH. Peter Anvin <hpa@zytor.com>
Wed, 22 May 2002 23:23:02 +0000 (23:23 +0000)
doc/genpsdriver.pl

index eac4c98..68cbc28 100644 (file)
@@ -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');