summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/tp/Texinfo/Convert/Converter.pm
diff options
context:
space:
mode:
Diffstat (limited to 'macros/texinfo/texinfo/tp/Texinfo/Convert/Converter.pm')
-rw-r--r--macros/texinfo/texinfo/tp/Texinfo/Convert/Converter.pm18
1 files changed, 2 insertions, 16 deletions
diff --git a/macros/texinfo/texinfo/tp/Texinfo/Convert/Converter.pm b/macros/texinfo/texinfo/tp/Texinfo/Convert/Converter.pm
index b093a96c47..258ef30626 100644
--- a/macros/texinfo/texinfo/tp/Texinfo/Convert/Converter.pm
+++ b/macros/texinfo/texinfo/tp/Texinfo/Convert/Converter.pm
@@ -1,6 +1,6 @@
# Converter.pm: Common code for Converters.
#
-# Copyright 2011-2019 Free Software Foundation, Inc.
+# Copyright 2011-2020 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -49,7 +49,7 @@ xml_accents
@EXPORT = qw(
);
-$VERSION = '6.7';
+$VERSION = '6.8';
my %defaults = (
'ENABLE_ENCODING' => 1,
@@ -244,20 +244,6 @@ sub converter(;$)
$converter->set_conf('OUTPUT_PERL_ENCODING', $perl_encoding);
}
}
- if (!defined($converter->{'expanded_formats'})) {
- if ($converter->{'parser'}) {
- $converter->{'expanded_formats'} = $converter->{'parser'}->{'expanded_formats'};
- } else {
- $converter->{'expanded_formats'} = [];
- }
- }
- if (!defined($converter->{'include_directories'})) {
- if ($converter->{'parser'}) {
- $converter->{'include_directories'} = $converter->{'parser'}->{'include_directories'};
- } else {
- $converter->{'include_directories'} = [ '.' ];
- }
- }
# turn the array to a hash for speed. Not sure it really matters for such
# a small array.