1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-01 17:24:50 +01:00

One missed hunk from 31988.

This commit is contained in:
Barton E. Schaefer 2013-11-15 22:19:02 -08:00
parent e7fa65ffae
commit 17465686af

View file

@ -61,8 +61,10 @@ unless(-d $destdir) {
mkdir($destdir) || &Die("$destdir is not a directory and cannot be created"); mkdir($destdir) || &Die("$destdir is not a directory and cannot be created");
} }
delete($ENV{'MANPL'}); foreach (keys %ENV) {
delete($ENV{'MANROFFSEQ'}); delete($ENV{$_}) if(/^((LC_)|(LESS)|(MAN))/);
}
$ENV{'LANG'} = 'C';
$ENV{'MANWIDTH'} = '80'; $ENV{'MANWIDTH'} = '80';
$ENV{'GROFF_NO_SGR'} = ''; # We need "classical" formatting of man pages. $ENV{'GROFF_NO_SGR'} = ''; # We need "classical" formatting of man pages.