We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43c6aa0 + 3235a0d commit 429a9edCopy full SHA for 429a9ed
lib/Pod/Perldoc/ToMan.pm
@@ -209,12 +209,6 @@ sub _have_groff_with_utf8 {
209
$version ge $minimum_groff_version;
210
}
211
212
-sub _have_mandoc_with_utf8 {
213
- my( $self ) = @_;
214
-
215
- $self->_is_mandoc and not system 'mandoc -Tlocale -V > /dev/null 2>&1';
216
- }
217
218
sub _collect_nroff_switches {
219
my( $self ) = shift;
220
@@ -242,7 +236,6 @@ sub _get_device_switches {
242
236
if( $self->_is_nroff ) { qw() }
243
237
elsif( $self->_have_groff_with_utf8 ) { qw(-Kutf8 -Tutf8) }
244
238
elsif( $self->_is_ebcdic ) { qw(-Tcp1047) }
245
- elsif( $self->_have_mandoc_with_utf8 ) { qw(-Tlocale) }
246
239
elsif( $self->_is_mandoc ) { qw() }
247
240
else { qw(-Tlatin1) }
248
241
0 commit comments