[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * tp/Texinfo/XS/convert/converter.c (setup_conver
From: |
Patrice Dumas |
Subject: |
branch master updated: * tp/Texinfo/XS/convert/converter.c (setup_converter_paths_information, converter_setup), tp/Texinfo/XS/convert/texinfo.c (txi_general_setup): use a consistent order for arguments. |
Date: |
Sun, 27 Oct 2024 16:12:29 -0400 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new 1a8e2d900e * tp/Texinfo/XS/convert/converter.c
(setup_converter_paths_information, converter_setup),
tp/Texinfo/XS/convert/texinfo.c (txi_general_setup): use a consistent order for
arguments.
1a8e2d900e is described below
commit 1a8e2d900ef9d11a828d290e8d8ded3c96b1da95
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Oct 27 21:12:18 2024 +0100
* tp/Texinfo/XS/convert/converter.c
(setup_converter_paths_information, converter_setup),
tp/Texinfo/XS/convert/texinfo.c (txi_general_setup): use a consistent
order for arguments.
---
ChangeLog | 7 +++++++
tp/Texinfo/XS/convert/converter.c | 7 ++++---
tp/Texinfo/XS/convert/converter.h | 4 ++--
tp/Texinfo/XS/convert/texinfo.c | 8 ++++----
tp/Texinfo/XS/convert/texinfo.h | 4 ++--
5 files changed, 19 insertions(+), 11 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 21f9ac9911..f2d404152b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2024-10-27 Patrice Dumas <pertusus@free.fr>
+
+ * tp/Texinfo/XS/convert/converter.c
+ (setup_converter_paths_information, converter_setup),
+ tp/Texinfo/XS/convert/texinfo.c (txi_general_setup): use a consistent
+ order for arguments.
+
2024-10-27 Patrice Dumas <pertusus@free.fr>
* doc/Makefile.am (pod2texi.texi): remove temporary file.
diff --git a/tp/Texinfo/XS/convert/converter.c
b/tp/Texinfo/XS/convert/converter.c
index d11e5d7134..c0c281ee82 100644
--- a/tp/Texinfo/XS/convert/converter.c
+++ b/tp/Texinfo/XS/convert/converter.c
@@ -118,8 +118,9 @@ const char
*xml_text_entity_no_arg_commands_formatting[BUILTIN_CMD_NUMBER];
static void
setup_converter_paths_information (int texinfo_uninstalled,
+ const char *converterdatadir,
const char *tp_builddir,
- const char *converterdatadir, const char *top_srcdir)
+ const char *top_srcdir)
{
memset (&conversion_paths_info, 0, sizeof (PATHS_INFORMATION));
conversion_paths_info.texinfo_uninstalled = texinfo_uninstalled;
@@ -142,8 +143,8 @@ setup_converter_paths_information (int texinfo_uninstalled,
/* called only once */
void
-converter_setup (int texinfo_uninstalled, const char *tp_builddir,
- const char *converterdatadir, const char *top_srcdir)
+converter_setup (int texinfo_uninstalled, const char *converterdatadir,
+ const char *tp_builddir, const char *top_srcdir)
{
int i;
diff --git a/tp/Texinfo/XS/convert/converter.h
b/tp/Texinfo/XS/convert/converter.h
index e78c11a127..c76037f983 100644
--- a/tp/Texinfo/XS/convert/converter.h
+++ b/tp/Texinfo/XS/convert/converter.h
@@ -127,8 +127,8 @@ extern PATHS_INFORMATION conversion_paths_info;
extern CONVERTER_FORMAT_DATA converter_format_data[];
-void converter_setup (int texinfo_uninstalled, const char *tp_builddir,
- const char *converterdatadir, const char *top_srcdir);
+void converter_setup (int texinfo_uninstalled, const char *converterdatadir,
+ const char *tp_builddir, const char *top_srcdir);
enum converter_format find_format_name_converter_format (const char *format);
enum converter_format find_perl_converter_class_converter_format (
diff --git a/tp/Texinfo/XS/convert/texinfo.c b/tp/Texinfo/XS/convert/texinfo.c
index 461595fcd3..6421398273 100644
--- a/tp/Texinfo/XS/convert/texinfo.c
+++ b/tp/Texinfo/XS/convert/texinfo.c
@@ -48,16 +48,16 @@
to be called once */
void
txi_general_setup (const char *localesdir, int texinfo_uninstalled,
- const char *tp_builddir,
- const char *converterdatadir, const char *top_srcdir)
+ const char *converterdatadir, const char *tp_builddir,
+ const char *top_srcdir)
{
messages_and_encodings_setup ();
if (localesdir)
configure_output_strings_translations (localesdir, 0, -1);
- converter_setup (texinfo_uninstalled, tp_builddir,
- converterdatadir, top_srcdir);
+ converter_setup (texinfo_uninstalled, converterdatadir, tp_builddir,
+ top_srcdir);
}
/* initialization of the library for a specific output format, to be
diff --git a/tp/Texinfo/XS/convert/texinfo.h b/tp/Texinfo/XS/convert/texinfo.h
index dc7b9dbcd6..2fe4a11177 100644
--- a/tp/Texinfo/XS/convert/texinfo.h
+++ b/tp/Texinfo/XS/convert/texinfo.h
@@ -24,8 +24,8 @@
/* locales dir for output strings translations */
void txi_general_setup (const char *localesdir, int texinfo_uninstalled,
- const char *tp_builddir,
- const char *converterdatadir, const char *top_srcdir);
+ const char *converterdatadir, const char *tp_builddir,
+ const char *top_srcdir);
void txi_converter_output_format_setup (const char *format_str);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * tp/Texinfo/XS/convert/converter.c (setup_converter_paths_information, converter_setup), tp/Texinfo/XS/convert/texinfo.c (txi_general_setup): use a consistent order for arguments.,
Patrice Dumas <=