Change space to NBSP to avoid breakage on 'doze platforms

This commit is contained in:
H. Peter Anvin 2002-05-22 23:23:02 +00:00
parent 52c9ad7b3c
commit f8ab4baba1

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