[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Patrice Dumas |
Date: |
Thu, 3 Oct 2024 17:34:52 -0400 (EDT) |
branch: master
commit 758baa29ad86aff5601d6047ed4c4e0d32832b2c
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Thu Oct 3 23:34:52 2024 +0200
* tp/Texinfo/XS/convert/convert_html.c (html_setup_output): rename
set_conf as option_set_conf.
---
ChangeLog | 9 +++++++--
tp/Texinfo/XS/convert/convert_html.c | 2 +-
tp/Texinfo/XS/convert/converters_defaults.c | 1 +
3 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index ede5ce0ae2..a8b829c368 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-10-03 Patrice Dumas <pertusus@free.fr>
+
+ * tp/Texinfo/XS/convert/convert_html.c (html_setup_output): rename
+ set_conf as option_set_conf.
+
2024-08-09 Patrice Dumas <pertusus@free.fr>
* tp/maintain/regenerate_C_options_info.pl,
@@ -25,7 +30,7 @@
OPTIONS_LIST and make the list a list on pointers, to have the
possibility to change the list size dynamically and have options
references remain valid upon reallocation of the list. Update
- callers, in particular get_converter_info_from_sv abd rename
+ callers, in particular get_converter_info_from_sv and rename
get_option_from_sv as new_option_from_sv.
2024-08-09 Patrice Dumas <pertusus@free.fr>
@@ -1282,7 +1287,7 @@
2024-07-30 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/Convert/HTML.pm (@all_directions_except_special_units)
- (converter_initialize) (conversion_initialization): do not use default
+ (converter_initialize, conversion_initialization): do not use default
directions strings directions to apply customized direction strings,
merge the directions that never change, global relative and file, and
the special units directions that may be customized.
diff --git a/tp/Texinfo/XS/convert/convert_html.c
b/tp/Texinfo/XS/convert/convert_html.c
index 603fa1e454..8bdc1ad392 100644
--- a/tp/Texinfo/XS/convert/convert_html.c
+++ b/tp/Texinfo/XS/convert/convert_html.c
@@ -19466,7 +19466,7 @@ html_setup_output (CONVERTER *self, char **paths)
"http://docs.mathjax.org/en/latest/web/hosting.html#getting-mathjax-via-git");
if (!self->conf->MATHJAX_CONFIGURATION.o.string)
- set_conf (&self->conf->MATHJAX_CONFIGURATION, 0,
+ option_set_conf (&self->conf->MATHJAX_CONFIGURATION, 0,
" options: {\n"
" skipHtmlTags: {'[-]': ['pre']}, // do not skip pre\n"
" ignoreHtmlClass: 'tex2jax_ignore',\n"
diff --git a/tp/Texinfo/XS/convert/converters_defaults.c
b/tp/Texinfo/XS/convert/converters_defaults.c
index c1dc927bb6..362928513f 100644
--- a/tp/Texinfo/XS/convert/converters_defaults.c
+++ b/tp/Texinfo/XS/convert/converters_defaults.c
@@ -119,6 +119,7 @@ void set_converter_customization_regular_defaults (OPTIONS
*options)
option_set_conf (&options->L2H_L2H, -2, 0);
option_set_conf (&options->L2H_SKIP, -1, 0);
option_set_conf (&options->L2H_TMP, -2, 0);
+ option_set_conf (&options->MATHJAX_CONFIGURATION, -2, 0);
option_set_conf (&options->MATHJAX_SCRIPT, -2, 0);
option_set_conf (&options->MATHJAX_SOURCE, -2, 0);
option_set_conf (&options->MAX_HEADER_LEVEL, -1, 0);