texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * tp/Texinfo/XS/convert/get_converter_perl_info.c


From: Patrice Dumas
Subject: branch master updated: * tp/Texinfo/XS/convert/get_converter_perl_info.c (get_converter_info_from_sv): do not error out on deprecated_config_directories customization hash directory key.
Date: Wed, 02 Oct 2024 17:16:03 -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 71e9a6d548 * tp/Texinfo/XS/convert/get_converter_perl_info.c 
(get_converter_info_from_sv): do not error out on deprecated_config_directories 
customization hash directory key.
71e9a6d548 is described below

commit 71e9a6d5480f81aa6fa58853eaf71068a82c9967
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Wed Oct 2 23:16:07 2024 +0200

    * tp/Texinfo/XS/convert/get_converter_perl_info.c
    (get_converter_info_from_sv): do not error out on
    deprecated_config_directories customization hash directory key.
---
 ChangeLog                                       | 6 ++++++
 tp/Texinfo/XS/convert/get_converter_perl_info.c | 3 +++
 2 files changed, 9 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index 9a1dd1fbf0..f34c4369f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-10-02  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/XS/convert/get_converter_perl_info.c
+       (get_converter_info_from_sv): do not error out on
+       deprecated_config_directories customization hash directory key.
+
 2024-08-04  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/Convert/Converter.pm (_generic_converter_init): update
diff --git a/tp/Texinfo/XS/convert/get_converter_perl_info.c 
b/tp/Texinfo/XS/convert/get_converter_perl_info.c
index c00e89fab8..285077419f 100644
--- a/tp/Texinfo/XS/convert/get_converter_perl_info.c
+++ b/tp/Texinfo/XS/convert/get_converter_perl_info.c
@@ -207,6 +207,9 @@ get_converter_info_from_sv (SV *conf_sv, const char *class,
                   if (!strcmp (key, "translated_commands"))
                     initialization_info->translated_commands
                       = set_translated_commands (value, converter);
+                  /* FIXME get deprecated_config_directories if needed */
+                  else if (!strcmp (key, "deprecated_config_directories"))
+                    {}
                   else if (!strcmp (key, "output_format"))
                     initialization_info->output_format
                       = non_perl_strdup (SvPVutf8_nolen (value));



reply via email to

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