texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Patrice Dumas
Date: Fri, 21 Jan 2022 06:46:48 -0500 (EST)

branch: master
commit 958cdb3d62a51ab228773f5ac2969d8c32a9a3de
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Fri Jan 21 12:44:32 2022 +0100

    * tp/init/chm.pm tp/init/epub3.pm tp/init/highlight_syntax.pm,
    tp/init/latex2html.pm tp/init/tex4ht.pm tp/t/init/redefine_need.init:
    add missing use, change in comments.
---
 ChangeLog                    | 6 ++++++
 tp/init/chm.pm               | 2 +-
 tp/init/epub3.pm             | 3 +++
 tp/init/highlight_syntax.pm  | 2 +-
 tp/init/latex2html.pm        | 3 ++-
 tp/init/tex4ht.pm            | 3 ++-
 tp/t/init/redefine_need.init | 2 ++
 7 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index ab31cb1cc5..43ac893a96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-01-21  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/init/chm.pm tp/init/epub3.pm tp/init/highlight_syntax.pm,
+       tp/init/latex2html.pm tp/init/tex4ht.pm tp/t/init/redefine_need.init:
+       add missing use, change in comments.
+
 2022-01-20  Patrice Dumas  <pertusus@free.fr>
 
        Convert Texinfo in @*math to LaTeX for HTML_MATH
diff --git a/tp/init/chm.pm b/tp/init/chm.pm
index 5d368d1712..ea4ec0bdbb 100644
--- a/tp/init/chm.pm
+++ b/tp/init/chm.pm
@@ -33,7 +33,7 @@ use strict;
 
 use File::Spec;
 
-# For __(
+# Also for __(
 use Texinfo::Common;
 
 # load modules to make sure that they are loaded before use
diff --git a/tp/init/epub3.pm b/tp/init/epub3.pm
index 03894bcc9c..7e0326f696 100644
--- a/tp/init/epub3.pm
+++ b/tp/init/epub3.pm
@@ -48,7 +48,10 @@ use File::Basename;
 # if EPUB_CREATE_CONTAINER is set.
 #use Archive::Zip;
 
+# also for __(
 use Texinfo::Common;
+use Texinfo::Convert::Utils;
+use Texinfo::Convert::Text;
 
 my $epub_format_version = '3.2';
 
diff --git a/tp/init/highlight_syntax.pm b/tp/init/highlight_syntax.pm
index 08630d7abd..f8a1336bf6 100644
--- a/tp/init/highlight_syntax.pm
+++ b/tp/init/highlight_syntax.pm
@@ -20,7 +20,7 @@ use strict;
 
 use File::Spec;
 
-# FIXME does not seems to be needed in latex2html.pm?
+# also for __(
 use Texinfo::Common;
 use Texinfo::Convert::Text;
 use Texinfo::Convert::NodeNameNormalization;
diff --git a/tp/init/latex2html.pm b/tp/init/latex2html.pm
index 8e063c2a9b..fe93952004 100644
--- a/tp/init/latex2html.pm
+++ b/tp/init/latex2html.pm
@@ -31,8 +31,9 @@ use Cwd;
 use File::Copy;
 use File::Spec;
 
-# For __(
+# also for __(
 use Texinfo::Common;
+use Texinfo::Convert::Texinfo;
 
 texinfo_register_handler('structure', \&l2h_process);
 texinfo_register_handler('finish', \&l2h_finish);
diff --git a/tp/init/tex4ht.pm b/tp/init/tex4ht.pm
index 6386c23f08..e1531d4a52 100644
--- a/tp/init/tex4ht.pm
+++ b/tp/init/tex4ht.pm
@@ -32,8 +32,9 @@
 
 use strict;
 
-# For __(
+# Also for __(
 use Texinfo::Common;
+use Texinfo::Convert::Texinfo;
 
 texinfo_register_handler('structure', \&tex4ht_prepare);
 texinfo_register_handler('init', \&tex4ht_convert);
diff --git a/tp/t/init/redefine_need.init b/tp/t/init/redefine_need.init
index b90abdf615..cef437790d 100644
--- a/tp/t/init/redefine_need.init
+++ b/tp/t/init/redefine_need.init
@@ -1,5 +1,7 @@
 use strict;
 
+use Texinfo::Convert::Text;
+
 texinfo_register_command_formatting('need', \&my_need_formatting);
 
 sub my_need_formatting($$$)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]