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 = ; 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');