Builder texinfo-solaris11-sparc Build #7585
Results:
Build successful
SourceStamp:
| Project | texinfo |
| Repository | https://git.savannah.gnu.org/git/texinfo.git |
| Branch | master |
| Revision | 1a287ccecae39c4b3c4dcd5dad6d8b9a92def834 |
| Got Revision | 1a287ccecae39c4b3c4dcd5dad6d8b9a92def834 |
| Changes | 167 changes |
BuildSlave:
unstable11sReason:
The SingleBranchScheduler scheduler named 'schedule-texinfo-solaris11-sparc' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/texinfo-solaris11-sparc | slave |
| buildername | texinfo-solaris11-sparc | Builder |
| buildnumber | 7585 | Build |
| codebase | Build | |
| got_revision | 1a287ccecae39c4b3c4dcd5dad6d8b9a92def834 | Git |
| project | texinfo | Build |
| repository | https://git.savannah.gnu.org/git/texinfo.git | Build |
| revision | 1a287ccecae39c4b3c4dcd5dad6d8b9a92def834 | Build |
| scheduler | schedule-texinfo-solaris11-sparc | Scheduler |
| slavename | unstable11s | BuildSlave |
| workdir | /export/home/buildbot/slave/texinfo-solaris11-sparc | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Gavin Smithgavinsmith0123@gmail.com
- Patrice Dumaspertusus@free.fr
- Thomasthomb@pm.me
Timing:
| Start | Wed Jul 29 11:33:57 2026 |
| End | Wed Jul 29 12:35:21 2026 |
| Elapsed | 1 hrs, 1 mins, 23 secs |
All Changes:
:
Change #273371
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Tue 30 Jun 2026 17:38:08 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 18d3d4171b806ec6e7c8c43850ca0c775c46084d Comments
* README-hacking: explain how to use commands and visually check that caching of translated strings and reuse of associated trees is effective. * tta/C/convert/convert_html.c (html_cache_translate_string) (html_cdt_string), tta/C/main/translations.c (cache_translate_string) (gdt_tree), tta/perl/Texinfo/Convert/HTML.pm (_html_cache_translate_string), tta/perl/Texinfo/Translations.pm (cache_translate_string, gdt): make translation caching and tree reusing debugging messages easier to read and to extract. * tta/perl/t/test_utils.pl (test): use a variable if debugging is set. Add output for the main test steps if debugging is set. * tta/perl/t/test_utils.pl (test): pass debug indicator to Document by using completed_parser_options instead of parser_options to set structuring and document options. Pass debug indicator to converter to raw text. * tta/C/main/convert_to_text.c (convert_to_text_internal), tta/C/main/convert_utils.c (definition_category_tree), tta/perl/Texinfo/Convert/Text.pm (_convert), tta/perl/Texinfo/Convert/Utils.pm (definition_category_tree): pass debug level in more functions, when outputting raw text. * tta/C/main/manipulate_indices.c (merge_indices), tta/perl/Texinfo/Indices.pm (setup_index_entries_sort_strings): sort merged indices based on name in C, and sort directly index names processed in setup_index_entries_sort_strings in Perl, to have a reproducible order for index sort string generation in case there is an error or debugging output.
Changed files
- ChangeLog
- README-hacking
- tta/C/convert/convert_html.c
- tta/C/main/convert_to_text.c
- tta/C/main/convert_utils.c
- tta/C/main/manipulate_indices.c
- tta/C/main/translations.c
- tta/TODO
- tta/perl/Texinfo/Convert/HTML.pm
- tta/perl/Texinfo/Convert/Text.pm
- tta/perl/Texinfo/Convert/Utils.pm
- tta/perl/Texinfo/Indices.pm
- tta/perl/Texinfo/Translations.pm
- tta/perl/t/test_utils.pl
Change #273372
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Tue 30 Jun 2026 18:36:38 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 01febb8e865c299d898b5aab1240804cc4a67ff2 Comments
* tta/C/convert/convert_html.c (html_cdt_string): call gdt_string with the cache function replacement argument instead of reimplementing gdt_string.
Changed files
- ChangeLog
- tta/C/convert/convert_html.c
Change #273380
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 30 Jun 2026 19:25:50 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision b757737b5d36af573fd25e7fc8002394368051c9 Comments
Start on generic list macros * tta/C/main/list_macros.h: new file. (def_list_macro): New macro for defining list type. * tta/C/main/tree_types.h: use it throughout.
Changed files
- ChangeLog
- tta/C/Makefile.am
- tta/C/api_for_swig/swig_interface.c
- tta/C/convert/format_html.c
- tta/C/main/build_perl_info.c
- tta/C/main/floats.c
- tta/C/main/list_macros.h
- tta/C/main/tree_types.h
- tta/C/structuring_transfo/structuring.c
- tta/perl/XSTexinfo/convert/get_html_perl_info.c
Change #273383
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 30 Jun 2026 19:41:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision aaf27dd5a8a0a1c936d560a491392624f2dd9d97 Comments
correct file name in Makefile.am
Changed files
- tta/C/Makefile.am
Change #273389
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 30 Jun 2026 20:22:54 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision ada60f1c03c939a36f2e9b4cba2366781f83b8f2 Comments
Generic list appending * tta/C/main/list_macros.h: (decl_list_fns, def_list_fns): New macros for declaring and defining functions that operating on lists. (add_): Macro for accessing function defined by def_list_fns. * tta/C/main/tree.c (add_to_const_element_list, add_to_element_list): Define with decl_list_fns/def_list_fns.
Changed files
- ChangeLog
- tta/C/main/list_macros.h
- tta/C/main/tree.c
- tta/C/main/tree.h
Change #273392
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 30 Jun 2026 21:07:13 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 2256b0a6ecfb18afdf2e89ba616b6dd6a1efabeb Comments
* tta/C/main/utils.c (add_string): Define with generic list macros.
Changed files
- ChangeLog
- tta/C/main/utils.c
- tta/C/main/utils.h
Change #273393
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 30 Jun 2026 21:22:58 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 645833c8c87a99a6cb1bf46c74840614f7c69ed4 Comments
* tta/C/main/manipulate_tree.c (add_source_mark): Use generic list macro.
Changed files
- ChangeLog
- tta/C/main/manipulate_tree.c
Change #273402
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Tue 30 Jun 2026 22:52:37 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 4984fb22483c8439d6497e4048774312386d384c Comments
* tta/C/main/translations.c (gdt_tree), tta/perl/Texinfo/Translations.pm (gdt, gdt_string): change order of arguments, put translation_context before debug_level. Update callers.
Changed files
- ChangeLog
- doc/tta_api/api_includes/Texinfo-Translations.texi
- tta/C/convert/convert_html.c
- tta/C/convert/converter.c
- tta/C/main/convert_to_text.c
- tta/C/main/convert_utils.c
- tta/C/main/manipulate_indices.c
- tta/C/main/translations.c
- tta/C/main/translations.h
- tta/C/structuring_transfo/structuring.c
- tta/perl/Texinfo/Convert/Converter.pm
- tta/perl/Texinfo/Convert/HTML.pm
- tta/perl/Texinfo/Convert/Text.pm
- tta/perl/Texinfo/Convert/Utils.pm
- tta/perl/Texinfo/Indices.pm
- tta/perl/Texinfo/Structuring.pm
- tta/perl/Texinfo/Translations.pm
Change #273423
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Wed 01 Jul 2026 00:16:12 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 6d4bb55b17b2bba3cbbfc2a57bacfa49dc287f30 Comments
* tta/C/convert/texinfo.c, tta/C/texi2any.c (find_tree_transformation) (txi_tree_transformation_table, load_interpreter) (txi_load_init_file): move txi_tree_transformation_table, txi_find_tree_transformation, txi_load_interpreter, txi_load_init_file and err_add_option_value to texi2any.c. Remove leading txi_ from function names. * tta/C/convert/texinfo.c (txi_sort_element_counts), tta/C/texi2any.c (main): inline txi_setup_load_interpreter, txi_set_base_default_options, txi_stop_interpreter, txi_converter_output_format_setup, txi_converter_format_defaults, txi_converter_initialization_setup in texi2any.c main and in txi_sort_element_counts and remove.
Changed files
- ChangeLog
- tta/C/convert/texinfo.c
- tta/C/convert/texinfo.h
- tta/C/texi2any.c
Change #273579
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 01 Jul 2026 20:07:53 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 2664507cc21ea8ed046013236a35f13bfef68d4d Comments
* tta/C/texi2any.c (main): Avoid accessing an uninitialized variable.
Changed files
- ChangeLog
- tta/C/texi2any.c
Change #273587
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 01 Jul 2026 20:56:09 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 5c438919f95be61a12b9619d31029e0618b059bb Comments
Generic list macros * tta/C/main/structure_list.c (add_to_node_relations_list, add_to_const_node_relations_list) (add_to_section_relations_list): Define with list_macros.h macros.
Changed files
- ChangeLog
- tta/C/main/structure_list.c
- tta/C/main/structure_list.h
- tta/C/structuring_transfo/structuring.c
Change #273588
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 01 Jul 2026 21:18:39 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c0200b470598408f927f528890e0caa847b47587 Comments
Generic list macros: add reallocate_ * tta/C/main/list_macros.h (decl_list_fns, def_list_fns): Generate reallocation function. * tta/C/main/structure_list.c (setup_reallocate_relations_list): Remove this macro. Rely on def_list_fns to generate reallocation functions. (add_heading_to_heading_relations_list): Use generic list macros to append to list.
Changed files
- ChangeLog
- tta/C/main/list_macros.h
- tta/C/main/structure_list.c
- tta/C/main/tree.c
- tta/C/structuring_transfo/structuring.c
Change #273600
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 01 Jul 2026 21:41:50 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 046d9f90464a56a9dddf23810a35a31bb6722e62 Comments
* tta/C/main/floats.c (add_to_listoffloats_list, add_to_float_information_list): Use generic macros.
Changed files
- ChangeLog
- tta/C/main/floats.c
Change #273601
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 01 Jul 2026 21:59:58 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 0d5ca1863f0bf0aaabc433825a32115ea441d554 Comments
add missing header file
Changed files
- tta/C/main/floats.c
Change #273606
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 01 Jul 2026 22:28:33 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 271dfcb691cb2e929fdde3fe89a5e2994dd388a5 Comments
* tta/C/main/translations.c (add_string_to_named_string_element_list) (add_element_to_named_string_element_list): Define with generic macros.
Changed files
- ChangeLog
- tta/C/main/translations.c
Change #273740
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 02 Jul 2026 21:17:56 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision f904dfd45b304e60b70857415fbe983e204dd872 Comments
Use generic list macros for HTML_CONVERTER_STATE * tta/C/main/html_converter_state: (COMMAND_OR_TYPE_STACK, STRING_STACK, INTEGER_STACK) (ELEMENT_REFERENCE_STACK, HTML_TARGET_LIST) (EXPLAINED_COMMAND_TYPE_LIST, ELEMENT_REFERENCE_STACK_STACK) (PAGES_CSS_LIST, TRANSLATED_COMMAND_LIST) (HTML_FORMATTING_CONTEXT_STACK, HTML_DOCUMENT_CONTEXT_STACK) (HTML_PENDING_FOOTNOTE_STACK, HTML_INLINE_CONTENT_STACK) (HTML_ASSOCIATED_INLINE_CONTENT_LIST): Define with def_list_type. This changes the names of fields 'stack' to 'list', and 'top' to 'number'. All uses updated.
Changed files
- ChangeLog
- tta/C/convert/build_html_perl_info.c
- tta/C/convert/convert_html.c
- tta/C/convert/format_html.c
- tta/C/convert/html_conversion_state.c
- tta/C/convert/html_converter_finish.c
- tta/C/main/build_perl_info.c
- tta/C/main/command_stack.c
- tta/C/main/html_converter_state.h
- tta/perl/XSTexinfo/convert/ConvertHTMLXS.xs
- tta/perl/XSTexinfo/convert/get_html_perl_info.c
Change #273741
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 02 Jul 2026 21:27:42 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision bbc50459e46334a6682f9a97b60517c496f0b714 Comments
Use generic list macros for HTML_CONVERTER_STATE * tta/C/main/html_converter_state: (FILE_STREAM_LIST, FILE_SOURCE_INFO_LIST, CSS_SELECTOR_STYLE_LIST) (HTMLXREF_MANUAL_LIST, STRING_STACK_LIST, SORTED_INDEX_NAMES) (SPECIAL_UNIT_INFO_LIST, DEPRECATED_DIRS_LIST): Define with def_list_type.
Changed files
- ChangeLog
- tta/C/main/html_converter_state.h
- tta/C/texi2any.c
Change #273816
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 00:17:32 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision d2ffa1b8a30ba4beaf7aa76544150127c25fdc77 Comments
* tta/C/convert/texinfo.c, tta/C/api_for_swig/swig_interface.c (txi_ext_output_parser_error_messages) (txi_ext_output_document_error_messages), tta/C/texi2any.c (main), tta/swig/texinfo.i: inline txi_output_parser_error_messages in main. Move txi_output_document_error_messages and txi_output_parser_error_messages dd to swig_interface.c and rename as txi_ext_output_parser_error_messages and and txi_ext_output_document_error_messages. Use in texinfo.i. * tta/C/convert/texinfo.c, tta/C/texi2any.c (main, close_file_stream): move txi_close_file_stream to texi2any.c and rename as close_file_stream. * tta/C/convert/texinfo.c, tta/C/texi2any.c (TRANSFORMATION_NAME_FLAG) (INTERPRETER_LOADING_INFO): move structures to texi2any.c. * tta/C/convert/texinfo.c, tta/C/texi2any.c (main) (remove_converter_and_output_units), tta/swig/texinfo.i: inline txi_parse_texi_file, txi_converter_output, txi_sort_element_counts, txi_destroy_document, txi_converter_remove_output_units and txi_destroy_converter in texi2any.c, add the remove_converter_and_output_units function. Call directly destroy_document in texinfo.i.
Changed files
- ChangeLog
- tta/C/api_for_swig/swig_interface.c
- tta/C/api_for_swig/swig_interface.h
- tta/C/convert/texinfo.c
- tta/C/convert/texinfo.h
- tta/C/texi2any.c
- tta/perl/Texinfo/Convert/Converter.pm
- tta/perl/Texinfo/Convert/ConverterNonXS.pm
- tta/swig/texinfo.i
Change #273817
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 00:17:32 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 66db6b86a5966cc13255acf5c9bae9fe4559a368 Comments
* tta/C/main/call_perl_function.c (txi_use_interpreter_load_modules), tta/C/convert/texinfo.c: move the txi_use_interpreter_load_modules unused function to call_perl_function.c.
Changed files
- ChangeLog
- tta/C/convert/texinfo.c
- tta/C/main/call_perl_function.c
- tta/C/main/call_perl_function.h
Change #273818
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 00:17:32 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c8d4f8c4304d6d1dc8f8a7bce5aed207e0a2b842 Comments
* tta/C/main/translations.c (general_output_strings_setup): move txi_general_output_strings_setup to translations.c and rename as general_output_strings_setup. Update callers. * tta/C/parsetexi/api.c (parser): move txi_parser to api.c and rename as parser. Update callers. * tta/C/structuring_transfo/transformations.c (complete_transform_document), tta/C/structuring_transfo/transformations.h (TT_TYPES_LIST), tta/swig/python/Makefile.am (_Texinfo_la_CPPFLAGS), tta/swig/perl/Makefile.am (Texinfo_la_CPPFLAGS): move txi_complete_document to transformations.c and rename as complete_transform_document. Update callers. Move TT_TYPES_LIST and STTF_* to transformations.h. Add structuring_transfo to includes. * tta/C/Makefile.am (C_libtexinfo_main_sources): remove texinfo.c.
Changed files
- ChangeLog
- tta/C/Makefile.am
- tta/C/convert/texinfo.c
- tta/C/convert/texinfo.h
- tta/C/main/translations.c
- tta/C/main/translations.h
- tta/C/parsetexi/api.c
- tta/C/parsetexi/api.h
- tta/C/structuring_transfo/transformations.c
- tta/C/structuring_transfo/transformations.h
- tta/C/texi2any.c
- tta/swig/perl/Makefile.am
- tta/swig/python/Makefile.am
- tta/swig/python/test_Texinfo.py
- tta/swig/texinfo.i
Change #273819
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 08:28:48 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 6fa40faf0cc5260ec57f61c1d10fbac1d7573442 Comments
* tta/C/main/html_converter_state.h (SPECIAL_UNIT_INFO_LIST): not a list of pointers.
Changed files
- ChangeLog
- tta/C/main/html_converter_state.h
Change #273821
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 08:40:57 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 55d5e47bb3d6d428b003ba35c6bc3041ff451725 Comments
* tta/C/structuring_transfo/structuring.c (new_complete_node_menu) (new_detailmenu): add CONVERTER_CACHE_TRANSLATE argument and pass to gdt. Update callers. * tta/C/convert/format_html.c (html_convert_heading_command): give html_translation_function to new_complete_node_menu and new_complete_menu_master_menu with such that the user can replace the default translations.
Changed files
- ChangeLog
- tta/C/convert/convert_html.c
- tta/C/convert/convert_html.h
- tta/C/convert/format_html.c
- tta/C/structuring_transfo/structuring.c
- tta/C/structuring_transfo/structuring.h
- tta/C/structuring_transfo/transformations.c
Change #273835
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 03 Jul 2026 12:15:12 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 83234ff2d448a0b817a937d27f75dbf93246e089 Comments
Generic list macros * tta/C/main/document_types.h (VALUE_LIST, ELEMENT_STACK), * tta/C/main/tree_types.h (FLOAT_RECORD_LIST, COMMAND_STACK): Define with def_list_type.
Changed files
- ChangeLog
- tta/C/convert/converter.c
- tta/C/convert/html_conversion_state.c
- tta/C/convert/html_converter_finish.c
- tta/C/convert/html_prepare_converter.c
- tta/C/main/command_stack.c
- tta/C/main/convert_to_text.c
- tta/C/main/document_types.h
- tta/C/main/output_unit.c
- tta/C/main/reader.c
- tta/C/main/tree_types.h
- tta/C/main/unicode.c
- tta/C/main/utils.c
- tta/C/parsetexi/context_stack.c
- tta/C/parsetexi/end_line.c
- tta/C/parsetexi/handle_commands.c
- tta/C/parsetexi/indices.c
- tta/C/parsetexi/parser.c
- tta/C/parsetexi/separator.c
- tta/C/structuring_transfo/structuring.c
Change #273838
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 12:46:59 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 753c6aabb055bc35f46bcd76f0a4bece3d91a2ab Comments
* tta/C/texi2any.c (main): remove default_is_html, considering that it is always false.
Changed files
- ChangeLog
- tta/C/texi2any.c
Change #273839
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 12:46:59 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 59a854b15440e4c505a5d2e5bf438a0d5806632e Comments
* tta/C/main/set_perl_interpreter.c (use_perl_interpreter) (set_use_perl_interpreter, has_perl_interpreter): only use 2 values for use_perl_interpreter, 0 or 1. Update callers. * tta/perl/XSTexinfo/parser_document/DocumentXS.xs (init): call set_use_perl_interpreter independently of initialization of C libraries.
Changed files
- ChangeLog
- tta/C/main/call_perl_function.c
- tta/C/main/set_perl_interpreter.c
- tta/C/texi2any.c
- tta/perl/XSTexinfo/parser_document/DocumentXS.xs
Change #273847
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 13:55:01 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision f5f52d6257ed51c3733c928b3bd439f1c391cba8 Comments
* tta/C/main/xs_utils.h, tta/C/main/replace_set_perl_interpreter.c: fix set_use_perl_interpreter prototype.
Changed files
- ChangeLog
- tta/C/main/replace_set_perl_interpreter.c
- tta/C/main/set_perl_interpreter.c
- tta/C/main/xs_utils.h
Change #273849
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 14:14:26 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision afeb1d2b6ba74cc76770e57b0196a2b710e0a7b0 Comments
* tta/C/Makefile.am (libperlcall_utils_la_SOURCES), tta/C/texi2any.c (enum interpreter_use): move enum interpreter_use to texi2any.c, and define used values only. Remove interpreter_use_types.h.
Changed files
- ChangeLog
- tta/C/Makefile.am
- tta/C/main/interpreter_use_types.h
- tta/C/texi2any.c
Change #273850
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 14:44:48 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 1e51c7d0a63d2cd4d3d2394626dc0376febc2e91 Comments
* tta/C/texi2any.c (INTERPRETER_LOADING_INFO): add embedded_interpreter field. * tta/C/texi2any.c (load_interpreter, main): use embedded_interpreter field of INTERPRETER_LOADING_INFO instead of the embedded_interpreter variable. Check if the interpreter should be loaded based on loading_info->embedded_interpreter in load_interpreter instead of in the calling code.
Changed files
- ChangeLog
- tta/C/texi2any.c
Change #273852
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 03 Jul 2026 15:04:12 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 147650250f793ea62c816e5b198ee4f2f4cd90ce Comments
* tta/C/main/plaintext_converter_state.h (COUNT_CONTEXT_STACK): Define with def_list_type etc.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/main/plaintext_converter_state.h
Change #273853
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 03 Jul 2026 15:04:13 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 6833b1fb8fd371264ac77d9445418376414e5177 Comments
Move xspara.c * tta/perl/XSTexinfo/xspara.c, tta/C/convert/plaintext_paragraph.c, tta/perl/XSTexinfo/xspara.h, tta/C/convert/plaintext_paragraph.h: xspara.c and xspara.h moved and renamed in preparation for being used in non-XS C code.
Changed files
- ChangeLog
- tta/C/Makefile.am
- tta/C/convert/plaintext_paragraph.c
- tta/C/convert/plaintext_paragraph.h
- tta/perl/XSTexinfo/Makefile.am
- tta/perl/XSTexinfo/ParagraphXS.xs
- tta/perl/XSTexinfo/xspara.c
- tta/perl/XSTexinfo/xspara.h
Change #273854
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 03 Jul 2026 15:04:13 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 1ad8412b0308375a943a2ad24ee00e0a04628ba9 Comments
* tta/C/main/plaintext_converter_state.h: add FORMATTER.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/main/plaintext_converter_state.h
Change #273855
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 03 Jul 2026 15:12:12 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision edc8017e5892c35986da446b740cb3efc539b577 Comments
* tta/perl/XSTexinfo/ParagraphXS.xs, * tta/C/convert/plaintext_paragraph.c: rename all functions to have para_ prefix rather than xspara_ prefix.
Changed files
- ChangeLog
- tta/C/convert/plaintext_paragraph.c
- tta/C/convert/plaintext_paragraph.h
- tta/perl/XSTexinfo/ParagraphXS.xs
Change #273859
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 15:55:54 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 3c90692fb1925f9c37ec281cd6cd7f7c8ffe71b9 Comments
* README-hacking, tta/README: add a short information on doing a new texi2any backend in C.
Changed files
- ChangeLog
- README-hacking
- tta/README
Change #273923
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 19:32:18 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision aec2d49774425aaf8b30dffacfedf4d502a39538 Comments
* tta/perl/Texinfo/XSLoader.pm (BEGIN): call Texinfo::ModulePath import after a successful require.
Changed files
- ChangeLog
- tta/perl/Texinfo/XSLoader.pm
Change #273924
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 19:35:05 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision b130ea5dba1a90000f2b771b86b6ada865230124 Comments
* tta/perl/Texinfo/Translations.pm (_substitute_element_array): remove the call to Texinfo::Document::build_tree, there should never be a tree with an handle only passed to gdt and similar.
Changed files
- ChangeLog
- tta/perl/Texinfo/Translations.pm
Change #273925
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 20:03:37 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 6bb1a906fd2c6f447e41cca8b1c1b7ed32b0d95c Comments
* doc/tta_api/Makefile.am (texi2any_internals_dependencies), tta/perl/Makefile.am (dist_modules_DATA), tta/perl/Texinfo/Document.pm, tta/perl/Texinfo/Document/Indices.pm (merged_indices, _document_indices_sort_strings) (sorted_indices_by_letter, sorted_indices_by_index), tta/perl/Texinfo/DocumentNonXS.pm, tta/perl/Texinfo/Document/IndicesNonXS.pm (print_document_indices_information) (print_document_indices_sort_strings), tta/perl/XSTexinfo/Makefile.am (xs_LTLIBRARIES, DocumentIndicesXS_*), tta/perl/XSTexinfo/parser_document/DocumentXS.xs, tta/perl/XSTexinfo/parser_document/DocumentIndicesXS.xs (print_document_indices_information) (print_document_indices_sort_strings): move indices related code from Texinfo::Document* and XS interfaces to a new module, Texinfo::Document::Indices, to avoid a circular dependency and to separate the document indices related code. Update callers.
Changed files
- .gitignore
- ChangeLog
- doc/tta_api/Makefile.am
- doc/tta_api/api_includes/Texinfo-Document-Indices.texi
- doc/tta_api/api_includes/Texinfo-Document.texi
- doc/tta_api/texi2any_internals.texi
- tta/README
- tta/perl/Makefile.am
- tta/perl/Texinfo/Convert/Converter.pm
- tta/perl/Texinfo/Convert/LaTeX.pm
- tta/perl/Texinfo/Document.pm
- tta/perl/Texinfo/Document/Indices.pm
- tta/perl/Texinfo/Document/IndicesNonXS.pm
- tta/perl/Texinfo/DocumentNonXS.pm
- tta/perl/Texinfo/Indices.pm
- tta/perl/XSTexinfo/Makefile.am
- tta/perl/XSTexinfo/parser_document/DocumentIndicesXS.xs
- tta/perl/XSTexinfo/parser_document/DocumentXS.xs
- tta/perl/t/test_utils.pl
- tta/perl/t/z_misc/test_sort.t
- tta/swig/perl/t/20index_sort.t
Change #273926
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 20:48:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision b135fa2de01669c91d12725ba73c46bfc0c271ef Comments
* tta/perl/Makefile.am (documentmodulesdir) (dist_documentmodules_DATA): fix installation directory for Texinfo::Document::Indices* modules.
Changed files
- ChangeLog
- tta/perl/Makefile.am
Change #273927
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 20:49:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c28255ee832da8cf674d7e1b998c1df4df7faf04 Comments
* tta/C/Makefile.am (C_libtexinfo_convert_sources): add main/plaintext_converter_state.h.
Changed files
- ChangeLog
- tta/C/Makefile.am
Change #273928
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 20:50:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision f2119fa2268cd26013a7310ba3683048ab25552b Comments
* tta/tests/many_input_files/*.sh: add ${dir_suffix} for staging_dir tu use a different one for native and non native test.Changed files
- ChangeLog
- tta/tests/many_input_files/different_encodings.sh
- tta/tests/many_input_files/different_languages_gen_master_menu.sh
- tta/tests/many_input_files/first_file_not_found.sh
- tta/tests/many_input_files/for_nbspaces_different_encodings.sh
- tta/tests/many_input_files/input_dir_non_ascii.sh
- tta/tests/many_input_files/output_dir_file_non_ascii.sh
- tta/tests/many_input_files/output_dir_non_ascii.sh
- tta/tests/many_input_files/tex_l2h.sh
- tta/tests/many_input_files/tex_l2h_output_dir_non_ascii.sh
- tta/tests/many_input_files/tex_t4ht.sh
- tta/tests/many_input_files/tex_t4ht_output_dir_non_ascii.sh
Change #273934
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 21:17:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 9dfdc8633822fcb772dbbc740a836973d09fcbc1 Comments
* tta/C/Makefile.am (C_libtexinfo_sources), tta/C/parsetexi/parser_api.c, tta/C/parsetexi/parser_api.h: rename parsetexi/api.c to parsetexi/parser_api.c. Update users.
Changed files
- ChangeLog
- tta/C/Makefile.am
- tta/C/api_for_swig/swig_parser_api.c
- tta/C/convert/html_prepare_converter.c
- tta/C/main/translations.c
- tta/C/parsetexi/api.c
- tta/C/parsetexi/api.h
- tta/C/parsetexi/parser_api.c
- tta/C/parsetexi/parser_api.h
- tta/C/texi2any.c
- tta/perl/XSTexinfo/parser_document/ParserXS.xs
- tta/swig/texinfo.i
Change #273935
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Fri 03 Jul 2026 21:37:20 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 0956402e8617c6244781f236fd8f3d5fd5b15cbb Comments
* tta/C/Makefile.am (C_libtexinfo_sources), tta/C/parsetexi/set_parser_conf.c, tta/C/parsetexi/set_parser_conf.h: rename parsetexi/conf.c to parsetexi/set_parser_conf.c. Update users.
Changed files
- ChangeLog
- tta/C/Makefile.am
- tta/C/api_for_swig/swig_parser_api.c
- tta/C/convert/html_prepare_converter.c
- tta/C/main/translations.c
- tta/C/parsetexi/conf.c
- tta/C/parsetexi/conf.h
- tta/C/parsetexi/parser_api.c
- tta/C/parsetexi/set_parser_conf.c
- tta/C/parsetexi/set_parser_conf.h
- tta/perl/XSTexinfo/parser_document/ParserXS.xs
- tta/swig/texinfo.i
Change #273948
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 04 Jul 2026 04:26:39 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 35e93481db33bd676fe4c78541bae1630b1d9660 Comments
Initial use of paragraph formatting * tta/C/convert/convert_to_plaintext.c: Add formatter stack and access plaintext_paragraph.c paragraph formatting.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/main/plaintext_converter_state.h
Change #273949
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 04 Jul 2026 04:26:39 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 5156134c3fe48903777a895bf4089481326068c4 Comments
CONVERTER_FORMAT_DATA * tta/C/convert/converter.h, tta/C/convert/converter.c (CONVERTER_FORMAT_DATA, converter_format_data): Move type definition to converter.c and declare data array as static. Add a comment about the purpose of the 'perl_converter_class' string.
Changed files
- ChangeLog
- tta/C/convert/converter.c
- tta/C/convert/converter.h
Change #273952
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 04 Jul 2026 08:35:26 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision bf1825ea7faa23b2d3907186bc076ac2409c4b4d Comments
* README-hacking: update the list of files relevant for ppport.
Changed files
- ChangeLog
- README-hacking
Change #273953
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 04 Jul 2026 08:35:26 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 8b89382f2afc5aa7ff479dcee683d9c47deaa536 Comments
* tta/C/main/convert_utils.c (definition_arguments_content) (definition_category_tree): assume that the tree is correct and that the definition line arguments container always exist. Change in variable names, change in comments.
Changed files
- ChangeLog
- tta/C/convert/format_html.c
- tta/C/main/convert_utils.c
- tta/C/main/convert_utils.h
Change #273961
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 04 Jul 2026 12:34:18 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 8903ac61715a77a20335d092bfd02a368be716f7 Comments
* doc/texinfo.tex (\include): Check if the file name includes a space character, and if it does, wrap the file name in { } before running \input. Report from Werner Lemberg.Changed files
- ChangeLog
- doc/texinfo.tex
Change #273965
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 04 Jul 2026 15:11:24 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 6651e90252643535166521be8bbc2beb24a64928 Comments
* tta/C/texi2any.c (main), tta/perl/texi2any.pl: determine if there is no argument and error out earlier, before loading converter code.
Changed files
- ChangeLog
- tta/C/texi2any.c
- tta/perl/texi2any.pl
Change #273966
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 04 Jul 2026 15:11:24 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 0b13a8c60f3448560b0a4ab1147c7a0e82261188 Comments
* tta/C/Makefile.am (ctexi2any_CPPFLAGS), tta/C/texi2any.c (load_interpreter, main): have loading_info embedded_interpreter default to txi_interpreter_want_embedded, do not set it based on the EMBED_PERL flag, remove EMBED_PERL. Do not warn in load_interpreter if the interpreter is not built, should be done by the calling code. Add such a missing warning. * tta/C/Makefile.am (noinst_PROGRAMS, texistatic_*): rename teximakehtml as texistatic.
Changed files
- .gitignore
- ChangeLog
- tta/C/Makefile.am
- tta/C/texi2any.c
Change #273967
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 04 Jul 2026 15:17:52 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 4ea1ef5410e4090a14c44ba089f7e55689ea800b Comments
* tta/C/convert/converter.c (CONVERTER_FORMAT_DATA): add to comment on perl_converter_class.
Changed files
- ChangeLog
- tta/C/convert/converter.c
Change #273968
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 04 Jul 2026 16:35:35 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 7aa9c596fbfca1e870cd1714f9b21b0042e77157 Comments
C plaintext converter - separate paragraphs * tta/C/convert/convert_to_plaintext.c: add paragraph formatter on stack for each paragraph. * tta/C/convert/plaintext_paragraph.c (para_add_next, para_add_text): Take const char * parameters rather than char *.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/plaintext_paragraph.c
- tta/C/convert/plaintext_paragraph.h
Change #273997
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 04 Jul 2026 20:36:55 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 5441b9eccf6e0ab38511c6777644a98674026578 Comments
* tta/C/convert/convert_to_plaintext.c (add_newline_if_needed): Add.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #273998
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 04 Jul 2026 20:46:16 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision ce7655c33af6431d2e63c6023d66ace07d4ab170 Comments
* tta/C/convert/convert_to_plaintext.c: flesh out slightly
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274003
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 04 Jul 2026 21:16:44 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 47d9dad2ead2103135ccc0538d70674775ed81c8 Comments
Fix const warning * tta/C/main/utils.c (ultimate_index_const): Add. The same as ultimate_index, except take and return const pointers. * tta/C/main/manipulate_indices.c (merge_indices): Call it instead of ultimate_index. Warning presumably introduced in commit on 2026-06-30.
Changed files
- ChangeLog
- tta/C/main/manipulate_indices.c
- tta/C/main/utils.c
- tta/C/main/utils.h
Change #274055
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 05 Jul 2026 11:08:41 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision bee455b951e0ff04cecd9ed8627df1884d12aa30 Comments
Fix const warning * tta/C/main/utils.c (ultimate_index_const): Add. The same as ultimate_index, except take and return const pointers. * tta/C/main/manipulate_indices.c (merge_indices): Call it instead of ultimate_index. Warning presumably introduced in commit on 2026-06-30.
Changed files
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #274060
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 05 Jul 2026 11:36:55 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision b64d8b61033489e45d747851238b57f1c9a8f8dd Comments
* tta/perl/Texinfo/Convert/Plaintext.pm (_stream_output_count_nl): New function, copied from _stream_output. (_stream_output): Remove optional third parameter.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #274066
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 05 Jul 2026 13:11:52 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision d3719ba7f7e00da228fe335e89e0f84768de88e3 Comments
C plaintext converter - start on paragraph indentation * tta/C/main/list_macros.h (decl_stack_fns, def_stack_fns) (top_, pop_): New. * tta/C/main/plaintext_converter_state.h: fill out * tta/C/convert/convert_to_plaintext.c: At a new paragraph, access 'format_context' stack and set paragraph indentation settings.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/main/list_macros.h
- tta/C/main/plaintext_converter_state.h
Change #274091
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sun 05 Jul 2026 20:05:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 9b0ffe50f86689f8695eb7015ed651b8c55ab23e Comments
* tta/perl/t/test_utils.pl (test): with $arg_output set, collect errors messages after they have been collected and fix corresponding code.
Changed files
- ChangeLog
- tta/perl/t/test_utils.pl
Change #274092
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sun 05 Jul 2026 20:05:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 4e23a89637305626c671c3af727af379269c11a0 Comments
* tta/perl/t/test_utils.pl, tta/perl/texi2any.pl: add comments on I18N::Langinfo on Windows platform.
Changed files
- ChangeLog
- tta/perl/t/test_utils.pl
- tta/perl/texi2any.pl
Change #274093
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sun 05 Jul 2026 20:05:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 5438ddd92d83d8704b515e623f62ec7ab8e90ee4 Comments
Change in comments and in Pod
Changed files
- doc/tta_api/api_includes/Texinfo-Document-Indices.texi
- doc/tta_api/api_includes/Texinfo-Indices.texi
- tta/perl/Texinfo/Document/Indices.pm
- tta/perl/Texinfo/Indices.pm
- tta/perl/t/test_utils.pl
Change #274094
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sun 05 Jul 2026 20:05:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision ac505beebacc7a23cf2df7b0a5bea61b6a2c941a Comments
Implement printing of converter indices sort strings * tta/C/main/document.c (print_document_indices_sort_strings), tta/C/main/manipulate_indices.c (INDEX_ENTRIES_SORT_STRINGS) (INDICES_ENTRIES_SORT_STRINGS) (find_indices_entries_sort_strings_index) (setup_indices_entries_sort_strings, print_indices_sort_strings), tta/perl/Texinfo/Document/IndicesNonXS.pm (print_document_indices_sort_strings), tta/perl/Texinfo/Indices.pm (print_indices_information): split out of print_document_indices_sort_strings the association of index entries to sort strings and the output of sort strings by index to the print_indices_sort_strings function, moved to manipulate_indices.c or Indices.pm. Move INDEX_ENTRIES_SORT_STRINGS, INDICES_ENTRIES_SORT_STRINGS, find_indices_entries_sort_strings_index and setup_indices_entries_sort_strings to manipulate_indices.c. * tta/C/convert/converter.c (print_converter_indices_sort_strings), tta/perl/Texinfo/Convert/ConverterNonXS.pm (print_converter_indices_sort_strings), tta/perl/XSTexinfo/convert/ConvertConverterXS.xs (print_converter_indices_sort_strings): add print_converter_indices_sort_strings, including an XS interface. * tta/perl/t/test_utils.pl (test): prepare printing sort strings for converters, setting new variables in output files and calling print_converter_indices_sort_strings.
Changed files
- ChangeLog
- tta/C/convert/converter.c
- tta/C/convert/converter.h
- tta/C/main/document.c
- tta/C/main/manipulate_indices.c
- tta/C/main/manipulate_indices.h
- tta/perl/Texinfo/Convert/ConverterNonXS.pm
- tta/perl/Texinfo/Document/IndicesNonXS.pm
- tta/perl/Texinfo/Indices.pm
- tta/perl/XSTexinfo/convert/ConvertConverterXS.xs
- tta/perl/t/results/alias/alias_macro_target_removed.pl
- tta/perl/t/results/alias/alias_non_existing_command.pl
- tta/perl/t/results/alias/alias_of_added_index.pl
- tta/perl/t/results/alias/alias_of_added_index_before_added_index.pl
- tta/perl/t/results/alias/alias_of_definfoenclose.pl
- tta/perl/t/results/alias/alias_of_definfoenclose_before_definfoenclose.pl
- tta/perl/t/results/alias/alias_of_macro.pl
- tta/perl/t/results/alias/alias_of_macro_before_macro.pl
- tta/perl/t/results/alias/alias_table_command.pl
- tta/perl/t/results/alias/alias_zero.pl
- tta/perl/t/results/alias/bad_line.pl
- tta/perl/t/results/alias/block_command_alias.pl
- tta/perl/t/results/alias/recursive_alias.pl
- tta/perl/t/results/alias/simple.pl
- tta/perl/t/results/alias/texinfo_command_alias.pl
- tta/perl/t/results/alias/texinfo_command_alias_indirect.pl
- tta/perl/t/results/alias/texinfo_command_alias_indirect_before.pl
- tta/perl/t/results/columnfractions/empty.pl
- tta/perl/t/results/columnfractions/empty_comment.pl
- tta/perl/t/results/columnfractions/good.pl
- tta/perl/t/results/columnfractions/good_comment.pl
- tta/perl/t/results/columnfractions/good_space_comment.pl
- tta/perl/t/results/columnfractions/invalid.pl
- tta/perl/t/results/columnfractions/not_fraction.pl
- tta/perl/t/results/columnfractions/out_of_multitable.pl
- tta/perl/t/results/columnfractions/something_before_columnfractions.pl
- tta/perl/t/results/columnfractions/wrong_command.pl
- tta/perl/t/results/conditionals/additional_space_in_end_conditional.pl
- tta/perl/t/results/conditionals/additional_space_in_end_conditional_expanded.pl
- tta/perl/t/results/conditionals/bad_ifclear_argument.pl
- tta/perl/t/results/conditionals/bad_ifset_argument.pl
- tta/perl/t/results/conditionals/command_conditionals.pl
- tta/perl/t/results/conditionals/command_conditionals_user_defined.pl
- tta/perl/t/results/conditionals/commands_in_ifset.pl
- tta/perl/t/results/conditionals/comment_on_ifset_line.pl
- tta/perl/t/results/conditionals/cond.pl
- tta/perl/t/results/conditionals/cond_ifhtml_ifinfo.pl
- tta/perl/t/results/conditionals/cond_ifhtml_ifinfo_iftex.pl
- tta/perl/t/results/conditionals/cond_info.pl
- tta/perl/t/results/conditionals/cond_info_ifhtml_ifinfo_iftex.pl
- tta/perl/t/results/conditionals/cond_info_no-ifhtml_no-ifinfo_no-iftex.pl
- tta/perl/t/results/conditionals/cond_no-ifhtml_no-ifinfo_no-iftex.pl
- tta/perl/t/results/conditionals/cond_xml.pl
- tta/perl/t/results/conditionals/conditional_not_closed.pl
- tta/perl/t/results/conditionals/consecutive_conditionals.pl
- tta/perl/t/results/conditionals/defcondx_Dbar.pl
- tta/perl/t/results/conditionals/defcondx_Ubar.pl
- tta/perl/t/results/conditionals/empty_ifclear.pl
- tta/perl/t/results/conditionals/empty_ifset.pl
- tta/perl/t/results/conditionals/empty_ifset_in_ifset_no_set.pl
- tta/perl/t/results/conditionals/empty_ifset_in_ifset_set.pl
- tta/perl/t/results/conditionals/empty_set_in_ifclear.pl
- tta/perl/t/results/conditionals/empty_set_in_ifset.pl
- tta/perl/t/results/conditionals/end_conditional_not_at_line_begining.pl
- tta/perl/t/results/conditionals/end_ifset_in_format.pl
- tta/perl/t/results/conditionals/false_format_not_closed.pl
- tta/perl/t/results/conditionals/if_not_closed.pl
- tta/perl/t/results/conditionals/ifclear_in_ifset.pl
- tta/perl/t/results/conditionals/ifclear_in_ifset_set.pl
- tta/perl/t/results/conditionals/ifnot_format_conditional.pl
- tta/perl/t/results/conditionals/ifnotinfo_exception.pl
- tta/perl/t/results/conditionals/ifset_in_command.pl
- tta/perl/t/results/conditionals/ifset_nonalpha.pl
- tta/perl/t/results/conditionals/ignore_not_closed.pl
- tta/perl/t/results/conditionals/ignore_spaces_and_comments.pl
- tta/perl/t/results/conditionals/ignored_in_ifset.pl
- tta/perl/t/results/conditionals/info_ifinfo_ifnotplaintext.pl
- tta/perl/t/results/conditionals/info_ifplaintext.pl
- tta/perl/t/results/conditionals/inlinefmtifelse_nesting.pl
- tta/perl/t/results/conditionals/inlineiffmtifelse_not_closed.pl
- tta/perl/t/results/conditionals/inlineiffmtifelse_not_closed_three_arg.pl
- tta/perl/t/results/conditionals/inlineiffmtifelse_not_closed_two_arg.pl
- tta/perl/t/results/conditionals/inlineifset_false_not_closed.pl
- tta/perl/t/results/conditionals/macro_in_ifset.pl
- tta/perl/t/results/conditionals/macro_in_ifset_set.pl
- tta/perl/t/results/conditionals/many_conditionals.pl
- tta/perl/t/results/conditionals/nested_ifset_ifclear.pl
- tta/perl/t/results/conditionals/nested_ifset_prepended_to_command_name.pl
- tta/perl/t/results/conditionals/nested_ignore.pl
- tta/perl/t/results/conditionals/nested_ignore_comment_no_eol.pl
- tta/perl/t/results/conditionals/nested_ignore_with_comments.pl
- tta/perl/t/results/conditionals/not_set.pl
- tta/perl/t/results/conditionals/plaintext_ifinfo.pl
- tta/perl/t/results/conditionals/plaintext_ifinfo_ifnotplaintext.pl
- tta/perl/t/results/conditionals/root_command_in_conditional.pl
- tta/perl/t/results/conditionals/superfluous_argument_to_end.pl
- tta/perl/t/results/conditionals/text_on_conditional_line.pl
- tta/perl/t/results/conditionals/text_on_conditional_line_expanded.pl
- tta/perl/t/results/conditionals/txiinternalvalue.pl
- tta/perl/t/results/conditionals/user_defined_txiinternalvalue.pl
- tta/perl/t/results/conditionals/value_on_ifset.pl
- tta/perl/t/results/converters_tests/accent_with_text.pl
- tta/perl/t/results/converters_tests/at_commands_in_raw.pl
- tta/perl/t/results/converters_tests/combined_fonts.pl
- tta/perl/t/results/converters_tests/commands_in_sc.pl
- tta/perl/t/results/converters_tests/commands_in_settitle_with_title.pl
- tta/perl/t/results/converters_tests/commands_in_var.pl
- tta/perl/t/results/converters_tests/complex_nestings.pl
- tta/perl/t/results/converters_tests/contents_at_document_begin.pl
- tta/perl/t/results/converters_tests/contents_at_document_begin_inline.pl
- tta/perl/t/results/converters_tests/contents_at_document_begin_separate_element.pl
- tta/perl/t/results/converters_tests/conversion_with_undef_customization.pl
- tta/perl/t/results/converters_tests/definition_commands.pl
- tta/perl/t/results/converters_tests/documentinfo_with_empty_line.pl
- tta/perl/t/results/converters_tests/email_table_command_as_argument.pl
- tta/perl/t/results/converters_tests/empty.pl
- tta/perl/t/results/converters_tests/empty_accent.pl
- tta/perl/t/results/converters_tests/empty_xrefname.pl
- tta/perl/t/results/converters_tests/enumerate_above_ten.pl
- tta/perl/t/results/converters_tests/extension_undef.pl
- tta/perl/t/results/converters_tests/footnote_no_number.pl
- tta/perl/t/results/converters_tests/footnote_no_number_separate.pl
- tta/perl/t/results/converters_tests/form_feeds.pl
- tta/perl/t/results/converters_tests/frenchspacing_and_code.pl
- tta/perl/t/results/converters_tests/image_extension.pl
- tta/perl/t/results/converters_tests/image_formatting.pl
- tta/perl/t/results/converters_tests/image_with_spaces.pl
- tta/perl/t/results/converters_tests/index_entry_in_preformatted.pl
- tta/perl/t/results/converters_tests/indices_in_begin_tables_lists.pl
- tta/perl/t/results/converters_tests/indices_in_begin_tables_lists_entries_after_item.pl
- tta/perl/t/results/converters_tests/inline.pl
- tta/perl/t/results/converters_tests/inline_expand_tex.pl
- tta/perl/t/results/converters_tests/inlinefmtifelse.pl
- tta/perl/t/results/converters_tests/inlinefmtifelse_with_commands.pl
- tta/perl/t/results/converters_tests/inlinefmtspaces.pl
- tta/perl/t/results/converters_tests/inlineifsetifclear.pl
- tta/perl/t/results/converters_tests/inlineifsetifclearspaces.pl
- tta/perl/t/results/converters_tests/inlinerawspaces.pl
- tta/perl/t/results/converters_tests/line_breaks.pl
- tta/perl/t/results/converters_tests/link.pl
- tta/perl/t/results/converters_tests/metadata_in_documentinfo.pl
- tta/perl/t/results/converters_tests/minimal_empty_empty.pl
- tta/perl/t/results/converters_tests/minimal_empty_with_bye.pl
- tta/perl/t/results/converters_tests/minimal_empty_with_input.pl
- tta/perl/t/results/converters_tests/multitable_prototypes.pl
- tta/perl/t/results/converters_tests/namedanchor.pl
- tta/perl/t/results/converters_tests/non_empty_part.pl
- tta/perl/t/results/converters_tests/non_empty_part_no_top_node_output.pl
- tta/perl/t/results/converters_tests/normal_font_in_monospace.pl
- tta/perl/t/results/converters_tests/printindex_merged_indices_code_style.pl
- tta/perl/t/results/converters_tests/raw_block_commands.pl
- tta/perl/t/results/converters_tests/raw_block_commands_expand_tex.pl
- tta/perl/t/results/converters_tests/ref_error_formatting.pl
- tta/perl/t/results/converters_tests/ref_in_sectioning.pl
- tta/perl/t/results/converters_tests/reference_for_formatting_customizations.pl
- tta/perl/t/results/converters_tests/references_to_top_no_top_output.pl
- tta/perl/t/results/converters_tests/refs_formatting.pl
- tta/perl/t/results/converters_tests/sections_and_printindex.pl
- tta/perl/t/results/converters_tests/setfilename_no_extension.pl
- tta/perl/t/results/converters_tests/simplest_no_node_section.pl
- tta/perl/t/results/converters_tests/simplest_test_prefix.pl
- tta/perl/t/results/converters_tests/some_at_commands_in_ref_nodes.pl
- tta/perl/t/results/converters_tests/some_at_commands_in_ref_nodes_transliterate.pl
- tta/perl/t/results/converters_tests/sp_empty_lines_1_no_arg_zero.pl
- tta/perl/t/results/converters_tests/sp_in_example.pl
- tta/perl/t/results/converters_tests/spaces_in_empty_node_names.pl
- tta/perl/t/results/converters_tests/spaces_in_node_names.pl
- tta/perl/t/results/converters_tests/table_in_display_in_example.pl
- tta/perl/t/results/converters_tests/table_in_example_in_display.pl
- tta/perl/t/results/converters_tests/test_deftypefnnewline.pl
- tta/perl/t/results/converters_tests/test_formatting_customizations.pl
- tta/perl/t/results/converters_tests/test_sp.pl
- tta/perl/t/results/converters_tests/things_before_setfilename.pl
- tta/perl/t/results/converters_tests/things_before_setfilename_no_element.pl
- tta/perl/t/results/converters_tests/top_in_ref.pl
- tta/perl/t/results/converters_tests/unknown_value.pl
- tta/perl/t/results/converters_tests/various_itemize_command_as_argument.pl
- tta/perl/t/results/converters_tests/various_vtable_command_as_argument.pl
- tta/perl/t/results/converters_tests/xrefname.pl
- tta/perl/t/results/coverage/accent_and_dash.pl
- tta/perl/t/results/coverage/accent_no_closed.pl
- tta/perl/t/results/coverage/accent_no_closed_comment.pl
- tta/perl/t/results/coverage/accent_no_closed_newline.pl
- tta/perl/t/results/coverage/accent_no_closed_paragraph.pl
- tta/perl/t/results/coverage/accents_errors.pl
- tta/perl/t/results/coverage/arg_in_brace_no_arg_command.pl
- tta/perl/t/results/coverage/at_after_accent_command.pl
- tta/perl/t/results/coverage/block_commands.pl
- tta/perl/t/results/coverage/braces_for_line_command.pl
- tta/perl/t/results/coverage/bye_on_end_command_line.pl
- tta/perl/t/results/coverage/cartouche.pl
- tta/perl/t/results/coverage/cartouche_in_example.pl
- tta/perl/t/results/coverage/cartouche_in_quotation.pl
- tta/perl/t/results/coverage/cartouche_title_and_content.pl
- tta/perl/t/results/coverage/center.pl
- tta/perl/t/results/coverage/command_in_end.pl
- tta/perl/t/results/coverage/command_in_end_expanded_raw_command_after.pl
- tta/perl/t/results/coverage/command_in_end_expanded_raw_command_empty_after.pl
- tta/perl/t/results/coverage/command_in_end_expanded_raw_in_command.pl
- tta/perl/t/results/coverage/command_in_end_expanded_raw_one_char_before_command.pl
- tta/perl/t/results/coverage/command_in_end_expanded_raw_one_char_not_in_command.pl
- tta/perl/t/results/coverage/command_in_end_expanded_raw_two_char_before_command.pl
- tta/perl/t/results/coverage/command_in_end_expanded_raw_two_char_not_in_command.pl
- tta/perl/t/results/coverage/command_in_end_ignored_raw_command_after.pl
- tta/perl/t/results/coverage/command_in_end_ignored_raw_in_command.pl
- tta/perl/t/results/coverage/command_in_end_ignored_raw_one_char_before_command.pl
- tta/perl/t/results/coverage/command_in_end_ignored_raw_one_char_not_in_command.pl
- tta/perl/t/results/coverage/command_in_end_ignored_raw_two_char_before_command.pl
- tta/perl/t/results/coverage/command_in_end_ignored_raw_two_char_not_in_command.pl
- tta/perl/t/results/coverage/command_zero.pl
- tta/perl/t/results/coverage/commands.pl
- tta/perl/t/results/coverage/commands_in_math.pl
- tta/perl/t/results/coverage/comment_on_cartouche_line.pl
- tta/perl/t/results/coverage/comment_on_group_line.pl
- tta/perl/t/results/coverage/def.pl
- tta/perl/t/results/coverage/delcomment.pl
- tta/perl/t/results/coverage/delcomment_followed_by_cpp_line.pl
- tta/perl/t/results/coverage/delcomment_on_comment.pl
- tta/perl/t/results/coverage/displaymath.pl
- tta/perl/t/results/coverage/empty_w.pl
- tta/perl/t/results/coverage/end_bad_end_argument_and_superfluous_arg.pl
- tta/perl/t/results/coverage/exdent_and_commands.pl
- tta/perl/t/results/coverage/exdent_and_formats.pl
- tta/perl/t/results/coverage/flushleft_flushright.pl
- tta/perl/t/results/coverage/flushleft_flushright_in_quotation.pl
- tta/perl/t/results/coverage/flushright_example_nested.pl
- tta/perl/t/results/coverage/flushright_not_closed.pl
- tta/perl/t/results/coverage/formats_only_title_comments.pl
- tta/perl/t/results/coverage/formats_only_titles.pl
- tta/perl/t/results/coverage/formats_titles.pl
- tta/perl/t/results/coverage/group_beginning_and_end_on_line.pl
- tta/perl/t/results/coverage/group_not_closed.pl
- tta/perl/t/results/coverage/hyphenation.pl
- tta/perl/t/results/coverage/indentedblock.pl
- tta/perl/t/results/coverage/indicateurl_end_lines.pl
- tta/perl/t/results/coverage/insertcopying.pl
- tta/perl/t/results/coverage/invalid_U.pl
- tta/perl/t/results/coverage/item_container.pl
- tta/perl/t/results/coverage/lettered_accent_and_spaces.pl
- tta/perl/t/results/coverage/math.pl
- tta/perl/t/results/coverage/minimal_only_input_line.pl
- tta/perl/t/results/coverage/multitable.pl
- tta/perl/t/results/coverage/nested_block_commands.pl
- tta/perl/t/results/coverage/not_i_j_in_dotless.pl
- tta/perl/t/results/coverage/one_line.pl
- tta/perl/t/results/coverage/preformatted.pl
- tta/perl/t/results/coverage/punctuation_in_line_commands.pl
- tta/perl/t/results/coverage/quotation_author.pl
- tta/perl/t/results/coverage/raggedright.pl
- tta/perl/t/results/coverage/setfilename_in_paragraph.pl
- tta/perl/t/results/coverage/spaces_after_braced_command.pl
- tta/perl/t/results/coverage/spaces_no_brace_after_braced_command.pl
- tta/perl/t/results/coverage/spaces_unknown_command_after_braced_command.pl
- tta/perl/t/results/coverage/symbol_after_block.pl
- tta/perl/t/results/coverage/symbol_after_command.pl
- tta/perl/t/results/coverage/table.pl
- tta/perl/t/results/coverage/table_command_comment.pl
- tta/perl/t/results/coverage/test_errormsg.pl
- tta/perl/t/results/coverage/test_tie.pl
- tta/perl/t/results/coverage/test_today.pl
- tta/perl/t/results/coverage/titlefont_in_center.pl
- tta/perl/t/results/coverage/unknown_accents.pl
- tta/perl/t/results/coverage/unknown_commands.pl
- tta/perl/t/results/coverage/verbatiminclude.pl
- tta/perl/t/results/coverage_braces/U_no_braces.pl
- tta/perl/t/results/coverage_braces/abbr_acronym.pl
- tta/perl/t/results/coverage_braces/abbr_no_braces.pl
- tta/perl/t/results/coverage_braces/anchor_not_closed.pl
- tta/perl/t/results/coverage_braces/brace_command_no_braces.pl
- tta/perl/t/results/coverage_braces/brace_opened_no_command.pl
- tta/perl/t/results/coverage_braces/caption_no_braces.pl
- tta/perl/t/results/coverage_braces/caption_not_closed.pl
- tta/perl/t/results/coverage_braces/code_not_closed.pl
- tta/perl/t/results/coverage_braces/command_in_U.pl
- tta/perl/t/results/coverage_braces/command_in_dotless.pl
- tta/perl/t/results/coverage_braces/contain_plain_text_nestings.pl
- tta/perl/t/results/coverage_braces/definfoenclose_bad_argument.pl
- tta/perl/t/results/coverage_braces/definfoenclose_no_braces.pl
- tta/perl/t/results/coverage_braces/definfoenclose_texinfo_commands.pl
- tta/perl/t/results/coverage_braces/email_no_braces.pl
- tta/perl/t/results/coverage_braces/email_possibilities.pl
- tta/perl/t/results/coverage_braces/empty_commands.pl
- tta/perl/t/results/coverage_braces/empty_images.pl
- tta/perl/t/results/coverage_braces/empty_line_in_anchor.pl
- tta/perl/t/results/coverage_braces/empty_line_in_braces_in_math.pl
- tta/perl/t/results/coverage_braces/empty_line_in_braces_in_math_at_begin_line.pl
- tta/perl/t/results/coverage_braces/empty_line_in_command_in_math.pl
- tta/perl/t/results/coverage_braces/empty_line_in_email.pl
- tta/perl/t/results/coverage_braces/empty_line_in_math.pl
- tta/perl/t/results/coverage_braces/empty_ref.pl
- tta/perl/t/results/coverage_braces/empty_second_email_argument.pl
- tta/perl/t/results/coverage_braces/end_line_in_anchor.pl
- tta/perl/t/results/coverage_braces/footnote.pl
- tta/perl/t/results/coverage_braces/footnote_ending_on_empty_line.pl
- tta/perl/t/results/coverage_braces/footnote_ending_on_empty_line_spaces.pl
- tta/perl/t/results/coverage_braces/footnote_in_command_not_closed.pl
- tta/perl/t/results/coverage_braces/footnote_no_braces.pl
- tta/perl/t/results/coverage_braces/footnote_no_node.pl
- tta/perl/t/results/coverage_braces/footnote_not_closed.pl
- tta/perl/t/results/coverage_braces/format_on_first_footnote_line.pl
- tta/perl/t/results/coverage_braces/heading_in_footnote.pl
- tta/perl/t/results/coverage_braces/hyphenation_no_braces.pl
- tta/perl/t/results/coverage_braces/image_no_braces.pl
- tta/perl/t/results/coverage_braces/inforef_too_much_args.pl
- tta/perl/t/results/coverage_braces/kbd.pl
- tta/perl/t/results/coverage_braces/math_bracketed_inside_not_closed.pl
- tta/perl/t/results/coverage_braces/math_bracketed_not_closed.pl
- tta/perl/t/results/coverage_braces/math_bracketed_not_closed_next_line.pl
- tta/perl/t/results/coverage_braces/math_leading_trailing_spaces.pl
- tta/perl/t/results/coverage_braces/math_no_braces.pl
- tta/perl/t/results/coverage_braces/math_not_closed.pl
- tta/perl/t/results/coverage_braces/nested.pl
- tta/perl/t/results/coverage_braces/nested_args.pl
- tta/perl/t/results/coverage_braces/nested_in_sc.pl
- tta/perl/t/results/coverage_braces/no_brace.pl
- tta/perl/t/results/coverage_braces/no_brace_space_end_line.pl
- tta/perl/t/results/coverage_braces/one_argument_leading_trailing_spaces.pl
- tta/perl/t/results/coverage_braces/recursive_acronym.pl
- tta/perl/t/results/coverage_braces/recursive_acronym_definition.pl
- tta/perl/t/results/coverage_braces/ref_empty_node.pl
- tta/perl/t/results/coverage_braces/ref_in_style_command.pl
- tta/perl/t/results/coverage_braces/seeentry_no_braces.pl
- tta/perl/t/results/coverage_braces/simple.pl
- tta/perl/t/results/coverage_braces/space_command_in_image.pl
- tta/perl/t/results/coverage_braces/space_in_anchor.pl
- tta/perl/t/results/coverage_braces/space_in_footnote.pl
- tta/perl/t/results/coverage_braces/space_in_image.pl
- tta/perl/t/results/coverage_braces/strong_no_braces.pl
- tta/perl/t/results/coverage_braces/test_image.pl
- tta/perl/t/results/coverage_braces/test_w.pl
- tta/perl/t/results/coverage_braces/titlefont_no_braces.pl
- tta/perl/t/results/coverage_braces/too_much_args.pl
- tta/perl/t/results/coverage_braces/two_footnotes_in_nodes.pl
- tta/perl/t/results/coverage_braces/two_footnotes_in_nodes_separate.pl
- tta/perl/t/results/coverage_braces/two_footnotes_in_nodes_separate_no_header.pl
- tta/perl/t/results/coverage_braces/unknown_command_with_braces.pl
- tta/perl/t/results/coverage_braces/unmatched_brace.pl
- tta/perl/t/results/coverage_braces/uref_in_ref.pl
- tta/perl/t/results/coverage_braces/uref_url.pl
- tta/perl/t/results/coverage_braces/uref_with_commands_characters.pl
- tta/perl/t/results/coverage_braces/url_no_braces.pl
- tta/perl/t/results/coverage_braces/verb_in_xref.pl
- tta/perl/t/results/coverage_braces/w_end_sentence.pl
- tta/perl/t/results/def/adjacent_defline.pl
- tta/perl/t/results/def/all_commands.pl
- tta/perl/t/results/def/all_commands_delimiters.pl
- tta/perl/t/results/def/all_commands_delimiters_printindex.pl
- tta/perl/t/results/def/all_commands_printindex.pl
- tta/perl/t/results/def/all_empty_def.pl
- tta/perl/t/results/def/ampchar.pl
- tta/perl/t/results/def/bracketed_arg_no_space.pl
- tta/perl/t/results/def/code_in_def.pl
- tta/perl/t/results/def/comment_index_before_defline.pl
- tta/perl/t/results/def/def_defx_mismatch.pl
- tta/perl/t/results/def/def_groupings_args.pl
- tta/perl/t/results/def/defblock_no_defline.pl
- tta/perl/t/results/def/defline_no_params.pl
- tta/perl/t/results/def/deftypeline.pl
- tta/perl/t/results/def/defx_after_comment.pl
- tta/perl/t/results/def/defx_after_comment_in_example.pl
- tta/perl/t/results/def/defx_after_empty_line.pl
- tta/perl/t/results/def/defx_after_empty_line_in_example.pl
- tta/perl/t/results/def/defx_after_paragraph_end.pl
- tta/perl/t/results/def/defx_after_preformatted_with_text.pl
- tta/perl/t/results/def/defx_after_text.pl
- tta/perl/t/results/def/defx_in_example.pl
- tta/perl/t/results/def/double_command.pl
- tta/perl/t/results/def/empty_def_arguments.pl
- tta/perl/t/results/def/empty_def_command.pl
- tta/perl/t/results/def/empty_deftype.pl
- tta/perl/t/results/def/empty_deftypeop_name.pl
- tta/perl/t/results/def/empty_main_def_arguments.pl
- tta/perl/t/results/def/end_of_line_end_file.pl
- tta/perl/t/results/def/end_of_line_protect_at_end.pl
- tta/perl/t/results/def/end_of_lines_protected.pl
- tta/perl/t/results/def/end_of_lines_protected_in_footnote.pl
- tta/perl/t/results/def/end_of_lines_protected_non_ascii.pl
- tta/perl/t/results/def/inter_item_commands_in_def.pl
- tta/perl/t/results/def/inter_item_commands_in_def_in_example.pl
- tta/perl/t/results/def/leading_space_in_def_arg.pl
- tta/perl/t/results/def/multiple_defline.pl
- tta/perl/t/results/def/no_category_or_no_name.pl
- tta/perl/t/results/def/not_closed.pl
- tta/perl/t/results/def/omit_def_space.pl
- tta/perl/t/results/def/protected_brace.pl
- tta/perl/t/results/def/ref_in_def.pl
- tta/perl/t/results/def/space_in_def_for_index.pl
- tta/perl/t/results/def/text_block_before_defline.pl
- tta/perl/t/results/def/wrong_braces_simple.pl
- tta/perl/t/results/def/wrong_braces_with_end_of_lines.pl
- tta/perl/t/results/docbook_tests/between_node_and_section.pl
- tta/perl/t/results/docbook_tests/empty_quotation_with_arg_followed_by_quotation.pl
- tta/perl/t/results/docbook_tests/maketitle_documentinfo_publication.pl
- tta/perl/t/results/docbook_tests/multiple_documentlanguage.pl
- tta/perl/t/results/docbook_tests/special_docbook_unnumbered.pl
- tta/perl/t/results/docbook_tests/titlefont_for_docbook.pl
- tta/perl/t/results/epub_tests/chapter_before_top_epub.pl
- tta/perl/t/results/epub_tests/epub_conditional.pl
- tta/perl/t/results/epub_tests/epub_inline_conditional.pl
- tta/perl/t/results/epub_tests/epub_metadata.pl
- tta/perl/t/results/epub_tests/languages_scripts_variants.pl
- tta/perl/t/results/epub_tests/section_part_epub.pl
- tta/perl/t/results/epub_tests/setfilename_on_top_and_after_node_epub.pl
- tta/perl/t/results/float/anchor_in_caption.pl
- tta/perl/t/results/float/cindex_in_caption.pl
- tta/perl/t/results/float/comment_space_comand_in_float.pl
- tta/perl/t/results/float/complex_float.pl
- tta/perl/t/results/float/empty_caption.pl
- tta/perl/t/results/float/empty_label_no_space.pl
- tta/perl/t/results/float/empty_label_no_space_comment.pl
- tta/perl/t/results/float/empty_label_with_space.pl
- tta/perl/t/results/float/empty_label_with_space_comment.pl
- tta/perl/t/results/float/empty_listoffloats.pl
- tta/perl/t/results/float/empty_listoffloats_with_floats.pl
- tta/perl/t/results/float/float_copying.pl
- tta/perl/t/results/float/float_in_block_commands.pl
- tta/perl/t/results/float/float_type_with_tieaccent.pl
- tta/perl/t/results/float/float_with_at_commands.pl
- tta/perl/t/results/float/footnote_in_caption.pl
- tta/perl/t/results/float/footnote_in_caption_and_error.pl
- tta/perl/t/results/float/listoffloats_with_commands.pl
- tta/perl/t/results/float/multiple_captions.pl
- tta/perl/t/results/float/multiple_spaces_in_float_type.pl
- tta/perl/t/results/float/no_brace_caption.pl
- tta/perl/t/results/float/numbering_captions_listoffloats.pl
- tta/perl/t/results/float/ref_to_float.pl
- tta/perl/t/results/float/simple.pl
- tta/perl/t/results/float/special_characters_in_float_type.pl
- tta/perl/t/results/formats_encodings/accent.pl
- tta/perl/t/results/formats_encodings/accent_argument_non_ascii.pl
- tta/perl/t/results/formats_encodings/accent_enable_encoding.pl
- tta/perl/t/results/formats_encodings/accentenc.pl
- tta/perl/t/results/formats_encodings/accentenc_enable_encoding.pl
- tta/perl/t/results/formats_encodings/at_commands_in_refs.pl
- tta/perl/t/results/formats_encodings/at_commands_in_refs_latin1.pl
- tta/perl/t/results/formats_encodings/at_commands_in_refs_utf8.pl
- tta/perl/t/results/formats_encodings/char_latin1_latin1_in_refs.pl
- tta/perl/t/results/formats_encodings/char_latin1_latin1_in_refs_output_encoding_latin1.pl
- tta/perl/t/results/formats_encodings/char_latin2_latin2_in_refs.pl
- tta/perl/t/results/formats_encodings/char_us_ascii_latin1_in_refs.pl
- tta/perl/t/results/formats_encodings/char_us_ascii_latin1_in_refs_no_translit_files.pl
- tta/perl/t/results/formats_encodings/char_utf8_latin1_in_refs.pl
- tta/perl/t/results/formats_encodings/documentencoding_utf8_and_insertions.pl
- tta/perl/t/results/formats_encodings/dotless_argument_non_ascii.pl
- tta/perl/t/results/formats_encodings/japanese_shift_jis.pl
- tta/perl/t/results/formats_encodings/manual_simple_latin1_with_error.pl
- tta/perl/t/results/formats_encodings/manual_simple_utf8_with_error.pl
- tta/perl/t/results/formats_encodings/multiple_include_encodings.pl
- tta/perl/t/results/formats_encodings/no_documentencoding_and_insertions.pl
- tta/perl/t/results/formats_encodings/sample_utf8.pl
- tta/perl/t/results/formats_encodings/verb_delimiter_not_ascii.pl
- tta/perl/t/results/formats_encodings/weird_accents.pl
- tta/perl/t/results/formats_encodings/weird_accents_disable_encoding.pl
- tta/perl/t/results/heading/heading_in_copying.pl
- tta/perl/t/results/heading/heading_in_example.pl
- tta/perl/t/results/heading/heading_in_quotation.pl
- tta/perl/t/results/html_tests/U_in_index.pl
- tta/perl/t/results/html_tests/acronym_in_node_and_section.pl
- tta/perl/t/results/html_tests/anchor_in_menu_on_sectioning_command_line.pl
- tta/perl/t/results/html_tests/anchor_on_node_line.pl
- tta/perl/t/results/html_tests/anchor_on_vtable_item.pl
- tta/perl/t/results/html_tests/automatic_menus.pl
- tta/perl/t/results/html_tests/automatic_menus_format_menu_no_detailmenu.pl
- tta/perl/t/results/html_tests/base_for_css_info_in_init_test.pl
- tta/perl/t/results/html_tests/character_number_leading_toc_stoc.pl
- tta/perl/t/results/html_tests/check_htmlxref.pl
- tta/perl/t/results/html_tests/check_htmlxref_ignore_ref_top_up.pl
- tta/perl/t/results/html_tests/check_htmlxref_menu.pl
- tta/perl/t/results/html_tests/check_htmlxref_no_use_nodes.pl
- tta/perl/t/results/html_tests/command_in_node_redirection.pl
- tta/perl/t/results/html_tests/command_in_node_redirection_multiple.pl
- tta/perl/t/results/html_tests/command_in_node_redirection_other_command.pl
- tta/perl/t/results/html_tests/command_in_node_redirection_same_command.pl
- tta/perl/t/results/html_tests/command_in_node_redirection_two_commands.pl
- tta/perl/t/results/html_tests/commands_in_abbr.pl
- tta/perl/t/results/html_tests/commands_in_alt.pl
- tta/perl/t/results/html_tests/commands_in_email.pl
- tta/perl/t/results/html_tests/contents_at_end.pl
- tta/perl/t/results/html_tests/contents_at_end_inline.pl
- tta/perl/t/results/html_tests/contents_at_end_separate_element.pl
- tta/perl/t/results/html_tests/contents_in_middle_chapter.pl
- tta/perl/t/results/html_tests/contents_in_middle_chapter_inline.pl
- tta/perl/t/results/html_tests/contents_in_middle_chapter_separate_element.pl
- tta/perl/t/results/html_tests/contents_in_middle_section.pl
- tta/perl/t/results/html_tests/contents_in_middle_section_inline.pl
- tta/perl/t/results/html_tests/contents_in_middle_section_separate_element.pl
- tta/perl/t/results/html_tests/contents_with_only_top_node.pl
- tta/perl/t/results/html_tests/css_in_node_redirection_page.pl
- tta/perl/t/results/html_tests/deftypefnnewline_for_copying_after.pl
- tta/perl/t/results/html_tests/deftypefnnewline_for_copying_before.pl
- tta/perl/t/results/html_tests/deftypefnnewline_on_in_middle.pl
- tta/perl/t/results/html_tests/documentdescription.pl
- tta/perl/t/results/html_tests/double_contents.pl
- tta/perl/t/results/html_tests/double_contents_after_title.pl
- tta/perl/t/results/html_tests/double_contents_after_title_show_title.pl
- tta/perl/t/results/html_tests/double_contents_after_title_show_title_nodes.pl
- tta/perl/t/results/html_tests/double_contents_book.pl
- tta/perl/t/results/html_tests/double_contents_chapter.pl
- tta/perl/t/results/html_tests/double_contents_inline.pl
- tta/perl/t/results/html_tests/double_contents_inline_chapter.pl
- tta/perl/t/results/html_tests/double_contents_inline_nodes.pl
- tta/perl/t/results/html_tests/double_contents_inline_section.pl
- tta/perl/t/results/html_tests/double_contents_nodes.pl
- tta/perl/t/results/html_tests/double_contents_section.pl
- tta/perl/t/results/html_tests/double_contents_separate_element.pl
- tta/perl/t/results/html_tests/double_contents_separate_element_chapter.pl
- tta/perl/t/results/html_tests/double_contents_separate_element_nodes.pl
- tta/perl/t/results/html_tests/double_contents_separate_element_section.pl
- tta/perl/t/results/html_tests/double_recursive_self_section_reference_node_no_use_node.pl
- tta/perl/t/results/html_tests/empty_chapter_in_html_title.pl
- tta/perl/t/results/html_tests/empty_chapter_in_html_title_no_node_no_use_nodes.pl
- tta/perl/t/results/html_tests/empty_lines_at_beginning_no_setfilename.pl
- tta/perl/t/results/html_tests/empty_lines_at_beginning_no_setfilename_no_element.pl
- tta/perl/t/results/html_tests/empty_node_in_html_title_no_sec_name.pl
- tta/perl/t/results/html_tests/empty_titlefont.pl
- tta/perl/t/results/html_tests/end_of_line_in_uref.pl
- tta/perl/t/results/html_tests/epub_conditionals.pl
- tta/perl/t/results/html_tests/file_name_case_insensitive_conflict_node.pl
- tta/perl/t/results/html_tests/file_name_case_insensitive_conflict_node_no_redirections.pl
- tta/perl/t/results/html_tests/file_name_case_insensitive_conflict_redirections.pl
- tta/perl/t/results/html_tests/file_name_conflict_with_Top.pl
- tta/perl/t/results/html_tests/file_name_conflict_with_section.pl
- tta/perl/t/results/html_tests/file_name_conflict_with_user_defined.pl
- tta/perl/t/results/html_tests/filenameconflictwithnonsplit.pl
- tta/perl/t/results/html_tests/filenameconflictwithspecialelement.pl
- tta/perl/t/results/html_tests/float_copying.pl
- tta/perl/t/results/html_tests/footnotestyle_separate_html_text_no_monolithic.pl
- tta/perl/t/results/html_tests/footnotestyle_separate_late.pl
- tta/perl/t/results/html_tests/fractions_rounding.pl
- tta/perl/t/results/html_tests/heading_between.pl
- tta/perl/t/results/html_tests/heading_node_after_chap.pl
- tta/perl/t/results/html_tests/headings_after_lone_nodes.pl
- tta/perl/t/results/html_tests/headings_nodes_before_chapter.pl
- tta/perl/t/results/html_tests/html_in_copying.pl
- tta/perl/t/results/html_tests/image_link_prefix.pl
- tta/perl/t/results/html_tests/index_and_node_same_name.pl
- tta/perl/t/results/html_tests/index_below.pl
- tta/perl/t/results/html_tests/info_js_dir_html.pl
- tta/perl/t/results/html_tests/info_js_dir_html_file.pl
- tta/perl/t/results/html_tests/info_js_dir_html_file_js_weblabels_file_undef.pl
- tta/perl/t/results/html_tests/info_js_dir_html_text.pl
- tta/perl/t/results/html_tests/inline_in_node.pl
- tta/perl/t/results/html_tests/itemize_arguments.pl
- tta/perl/t/results/html_tests/itemize_arguments_enable_encoding.pl
- tta/perl/t/results/html_tests/itemize_tieaccent.pl
- tta/perl/t/results/html_tests/letter_command_in_index.pl
- tta/perl/t/results/html_tests/maketitle_documentinfo_publication.pl
- tta/perl/t/results/html_tests/mathjax_with_texinfo.pl
- tta/perl/t/results/html_tests/mathjax_with_texinfo_enable_encoding.pl
- tta/perl/t/results/html_tests/mathjax_with_texinfo_html_file.pl
- tta/perl/t/results/html_tests/mathjax_with_texinfo_html_text.pl
- tta/perl/t/results/html_tests/mathjax_with_texinfo_no_convert_to_latex.pl
- tta/perl/t/results/html_tests/menu.pl
- tta/perl/t/results/html_tests/menu_in_documentdescription.pl
- tta/perl/t/results/html_tests/menu_in_example.pl
- tta/perl/t/results/html_tests/namedanchor_in_redirection_file.pl
- tta/perl/t/results/html_tests/no_content.pl
- tta/perl/t/results/html_tests/no_content_do_contents.pl
- tta/perl/t/results/html_tests/no_content_do_contents_inline.pl
- tta/perl/t/results/html_tests/no_content_do_contents_separate_element.pl
- tta/perl/t/results/html_tests/no_content_inline.pl
- tta/perl/t/results/html_tests/no_content_separate_element.pl
- tta/perl/t/results/html_tests/no_use_iso.pl
- tta/perl/t/results/html_tests/node_footnote_end.pl
- tta/perl/t/results/html_tests/node_footnote_separated.pl
- tta/perl/t/results/html_tests/node_footnote_use_node.pl
- tta/perl/t/results/html_tests/node_footnote_use_node_separate.pl
- tta/perl/t/results/html_tests/node_heading_between.pl
- tta/perl/t/results/html_tests/nodedescription_description.pl
- tta/perl/t/results/html_tests/nodedescription_description_no_use_nodes.pl
- tta/perl/t/results/html_tests/raw_html.pl
- tta/perl/t/results/html_tests/redirection_same_labels.pl
- tta/perl/t/results/html_tests/ref_in_preformatted.pl
- tta/perl/t/results/html_tests/sectioning_check_menu_structure.pl
- tta/perl/t/results/html_tests/set_unit_file_name_filepath.pl
- tta/perl/t/results/html_tests/shortcontents_no_top.pl
- tta/perl/t/results/html_tests/shorttitlepage.pl
- tta/perl/t/results/html_tests/simple_only_special_spaces_node.pl
- tta/perl/t/results/html_tests/simple_only_special_spaces_node_no_translit_files.pl
- tta/perl/t/results/html_tests/simple_only_special_spaces_node_test_split_section.pl
- tta/perl/t/results/html_tests/simplest_test_date_in_header.pl
- tta/perl/t/results/html_tests/spaces_in_line_break_in_verb_w.pl
- tta/perl/t/results/html_tests/split_html_text.pl
- tta/perl/t/results/html_tests/test_accents_sc_default.pl
- tta/perl/t/results/html_tests/test_accents_sc_default_latin1.pl
- tta/perl/t/results/html_tests/test_accents_sc_default_usascii.pl
- tta/perl/t/results/html_tests/test_accents_sc_enable_encoding.pl
- tta/perl/t/results/html_tests/test_accents_sc_enable_encoding_latin1.pl
- tta/perl/t/results/html_tests/test_accents_sc_enable_encoding_to_utf8_latin1.pl
- tta/perl/t/results/html_tests/test_accents_sc_enable_encoding_to_utf8_usascii.pl
- tta/perl/t/results/html_tests/test_accents_sc_enable_encoding_usascii.pl
- tta/perl/t/results/html_tests/test_accents_sc_to_utf8_latin1.pl
- tta/perl/t/results/html_tests/test_accents_sc_use_numeric_entity.pl
- tta/perl/t/results/html_tests/test_separated_contents_shortcontents.pl
- tta/perl/t/results/html_tests/test_xrefautomaticsectiontitle.pl
- tta/perl/t/results/html_tests/test_xrefautomaticsectiontitle_off_first.pl
- tta/perl/t/results/html_tests/tex_expanded_in_caption_multiple_time.pl
- tta/perl/t/results/html_tests/tex_expanded_in_copying.pl
- tta/perl/t/results/html_tests/text_before_top_and_contents_after_title.pl
- tta/perl/t/results/html_tests/text_before_top_and_summarycontents_after_title.pl
- tta/perl/t/results/html_tests/text_css_info_in_init.pl
- tta/perl/t/results/html_tests/titles.pl
- tta/perl/t/results/html_tests/top_file_name_and_node_name_collision.pl
- tta/perl/t/results/html_tests/top_node_top_contents.pl
- tta/perl/t/results/html_tests/top_node_up_explicit.pl
- tta/perl/t/results/html_tests/top_node_up_explicit_no_nodes.pl
- tta/perl/t/results/html_tests/top_node_up_implicit.pl
- tta/perl/t/results/html_tests/top_node_up_implicit_no_nodes.pl
- tta/perl/t/results/html_tests/transliterated_names_conflicts.pl
- tta/perl/t/results/html_tests/undef_split_and_big_rule.pl
- tta/perl/t/results/html_tests/uref_accented_letter.pl
- tta/perl/t/results/html_tests/uref_accented_letter_ascii.pl
- tta/perl/t/results/html_tests/uref_accented_letter_latin1.pl
- tta/perl/t/results/html_tests/utf8_default.pl
- tta/perl/t/results/html_tests/utf8_enable_encoding.pl
- tta/perl/t/results/html_tests/utf8_enable_encoding_no_use_iso.pl
- tta/perl/t/results/html_tests/utf8_enable_encoding_use_numeric_entity.pl
- tta/perl/t/results/html_tests/utf8_use_numeric_entity.pl
- tta/perl/t/results/html_tests/verbatim_in_multitable_in_example.pl
- tta/perl/t/results/html_tests/xhtml_rule_element_already_closed.pl
- tta/perl/t/results/html_tests/xml_protected_in_verb.pl
- tta/perl/t/results/htmlxref/htmlxref.pl
- tta/perl/t/results/htmlxref/htmlxref_no_urlprefix_first.pl
- tta/perl/t/results/htmlxref/htmlxref_nodes.pl
- tta/perl/t/results/htmlxref/htmlxref_only_mono.pl
- tta/perl/t/results/htmlxref/htmlxref_only_mono_nodes.pl
- tta/perl/t/results/htmlxref/htmlxref_only_split.pl
- tta/perl/t/results/htmlxref/htmlxref_only_split_nodes.pl
- tta/perl/t/results/include/cpp_line_before_first_node.pl
- tta/perl/t/results/include/cpp_line_latin1.pl
- tta/perl/t/results/include/cpp_lines.pl
- tta/perl/t/results/include/double_include.pl
- tta/perl/t/results/include/include_at_end_line.pl
- tta/perl/t/results/include/include_comment.pl
- tta/perl/t/results/include/include_in_removed_before_item.pl
- tta/perl/t/results/include/include_setfilename_on_setfilename_line.pl
- tta/perl/t/results/include/include_space.pl
- tta/perl/t/results/include/include_space_comment.pl
- tta/perl/t/results/include/include_with_setfilename.pl
- tta/perl/t/results/include/include_with_setfilename_in_preformatted.pl
- tta/perl/t/results/include/macro_and_commands_in_early_commands.pl
- tta/perl/t/results/include/macro_definition_in_include.pl
- tta/perl/t/results/include/macro_in_early_commands.pl
- tta/perl/t/results/include/no_eol_in_included_file.pl
- tta/perl/t/results/include/simple.pl
- tta/perl/t/results/include/simple_no_eol.pl
- tta/perl/t/results/include/test_two_include.pl
- tta/perl/t/results/include/value_expansion_in_include.pl
- tta/perl/t/results/include/verbatiminclude_and_encoding.pl
- tta/perl/t/results/include/verbatiminclude_and_encoding_latin1.pl
- tta/perl/t/results/indices/complex_recursive_synindex.pl
- tta/perl/t/results/indices/def_existing_index.pl
- tta/perl/t/results/indices/def_syn_indices.pl
- tta/perl/t/results/indices/default_cp_index_and_one_letter_syncodeindex.pl
- tta/perl/t/results/indices/double_index_entry.pl
- tta/perl/t/results/indices/double_seeentry_seealso.pl
- tta/perl/t/results/indices/double_syncodeindex.pl
- tta/perl/t/results/indices/empty_added_index_entry.pl
- tta/perl/t/results/indices/empty_cindex_entry.pl
- tta/perl/t/results/indices/empty_index_entry.pl
- tta/perl/t/results/indices/empty_string_index_entry.pl
- tta/perl/t/results/indices/encoding_index_ascii.pl
- tta/perl/t/results/indices/encoding_index_ascii_enable_encoding.pl
- tta/perl/t/results/indices/encoding_index_latin1.pl
- tta/perl/t/results/indices/encoding_index_latin1_enable_encoding.pl
- tta/perl/t/results/indices/encoding_index_utf8.pl
- tta/perl/t/results/indices/encoding_index_utf8_enable_encoding.pl
- tta/perl/t/results/indices/encoding_index_utf8_no_use_unicode.pl
- tta/perl/t/results/indices/explicit_sort_key.pl
- tta/perl/t/results/indices/ftable_vtable.pl
- tta/perl/t/results/indices/ignored_sort_char_empty_entries.pl
- tta/perl/t/results/indices/image_lines_count.pl
- tta/perl/t/results/indices/image_text_lines_count.pl
- tta/perl/t/results/indices/index_and_node_same_name.pl
- tta/perl/t/results/indices/index_entries_before_nodes.pl
- tta/perl/t/results/indices/index_entries_locations.pl
- tta/perl/t/results/indices/index_entry_before_first_node.pl
- tta/perl/t/results/indices/index_entry_before_node.pl
- tta/perl/t/results/indices/index_entry_in_footnote.pl
- tta/perl/t/results/indices/index_entry_in_footnote_different_node_end.pl
- tta/perl/t/results/indices/index_entry_in_footnote_sections.pl
- tta/perl/t/results/indices/index_entry_in_footnote_sections_separate.pl
- tta/perl/t/results/indices/index_entry_in_footnote_separate.pl
- tta/perl/t/results/indices/index_no_node.pl
- tta/perl/t/results/indices/index_no_node_no_top.pl
- tta/perl/t/results/indices/index_no_node_no_top_no_node.pl
- tta/perl/t/results/indices/index_nodes.pl
- tta/perl/t/results/indices/index_nodes_no_split_no_use_nodes.pl
- tta/perl/t/results/indices/index_special_region.pl
- tta/perl/t/results/indices/index_special_region_no_insertcopying.pl
- tta/perl/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes.pl
- tta/perl/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes.pl
- tta/perl/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default.pl
- tta/perl/t/results/indices/index_special_region_no_titlepage_no_nodes.pl
- tta/perl/t/results/indices/index_special_region_titlepage_no_nodes.pl
- tta/perl/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default.pl
- tta/perl/t/results/indices/index_split.pl
- tta/perl/t/results/indices/index_split_split_chapter_no_nodes.pl
- tta/perl/t/results/indices/index_table.pl
- tta/perl/t/results/indices/index_table_chapter_no_node.pl
- tta/perl/t/results/indices/multiple_index_text_sortas_seeentry_seealso.pl
- tta/perl/t/results/indices/nodes_before_top.pl
- tta/perl/t/results/indices/nodes_before_top_and_sections_chapter.pl
- tta/perl/t/results/indices/nodes_before_top_and_sections_chapter_no_node.pl
- tta/perl/t/results/indices/nodes_before_top_and_sections_unsplit_no_nodes.pl
- tta/perl/t/results/indices/nodes_before_top_split_chapter.pl
- tta/perl/t/results/indices/nodes_before_top_split_chapter_no_nodes.pl
- tta/perl/t/results/indices/print_merged_index.pl
- tta/perl/t/results/indices/printindex_before_document.pl
- tta/perl/t/results/indices/printindex_between_node_section.pl
- tta/perl/t/results/indices/printindex_between_part_chapter.pl
- tta/perl/t/results/indices/printindex_index_entry_in_copying.pl
- tta/perl/t/results/indices/printindex_index_entry_in_copying_in_footnote.pl
- tta/perl/t/results/indices/printindex_index_entry_in_copying_no_insertcopying.pl
- tta/perl/t/results/indices/printindex_with_space_before.pl
- tta/perl/t/results/indices/recursive_synindex.pl
- tta/perl/t/results/indices/same_index_entry_merged_indices.pl
- tta/perl/t/results/indices/same_only_seealso_seeentry.pl
- tta/perl/t/results/indices/same_seealso_seeentry.pl
- tta/perl/t/results/indices/seealso_duplicate.pl
- tta/perl/t/results/indices/seeentry.pl
- tta/perl/t/results/indices/sorted_subentries.pl
- tta/perl/t/results/indices/sorting_of_symbols.pl
- tta/perl/t/results/indices/split_chapter_index.pl
- tta/perl/t/results/indices/subentries.pl
- tta/perl/t/results/indices/subentries_and_comments.pl
- tta/perl/t/results/indices/subentry_and_sortas.pl
- tta/perl/t/results/indices/subentry_and_sortas_spaces.pl
- tta/perl/t/results/indices/syncode_index_print_both.pl
- tta/perl/t/results/indices/syncodeindex_to_plain.pl
- tta/perl/t/results/indices/transparent_sort_chars.pl
- tta/perl/t/results/indices/unknown_index_entry.pl
- tta/perl/t/results/indices/unknown_printindex.pl
- tta/perl/t/results/indices/unknown_synindex.pl
- tta/perl/t/results/indices/unknown_then_known_index_entry.pl
- tta/perl/t/results/indices/w_lines_count.pl
- tta/perl/t/results/indices/wrong_synindex.pl
- tta/perl/t/results/info_tests/anchor_and_spaces.pl
- tta/perl/t/results/info_tests/anchor_in_command.pl
- tta/perl/t/results/info_tests/before_node_and_section.pl
- tta/perl/t/results/info_tests/center_flush.pl
- tta/perl/t/results/info_tests/chinese_mixed_with_en_EUC_CN.pl
- tta/perl/t/results/info_tests/colon_in_index_entry.pl
- tta/perl/t/results/info_tests/colons_in_index_entries_and_node.pl
- tta/perl/t/results/info_tests/colons_in_index_entries_and_node_no_quoting.pl
- tta/perl/t/results/info_tests/def_in_copying.pl
- tta/perl/t/results/info_tests/del_quote_linebreaking.pl
- tta/perl/t/results/info_tests/direntry_dircategory.pl
- tta/perl/t/results/info_tests/direntry_dircategory_and_commands.pl
- tta/perl/t/results/info_tests/empty_arguments.pl
- tta/perl/t/results/info_tests/empty_caption.pl
- tta/perl/t/results/info_tests/empty_copying_not_ended.pl
- tta/perl/t/results/info_tests/encoding_us_ascii.pl
- tta/perl/t/results/info_tests/end_of_line_command_in_node_lines.pl
- tta/perl/t/results/info_tests/error_in_footnote.pl
- tta/perl/t/results/info_tests/file_only_png.pl
- tta/perl/t/results/info_tests/float_long_captions.pl
- tta/perl/t/results/info_tests/float_without_type.pl
- tta/perl/t/results/info_tests/image_and_punctuation.pl
- tta/perl/t/results/info_tests/image_and_spaces_formatting.pl
- tta/perl/t/results/info_tests/image_extension.pl
- tta/perl/t/results/info_tests/image_in_paragraph.pl
- tta/perl/t/results/info_tests/image_not_found.pl
- tta/perl/t/results/info_tests/image_quotes.pl
- tta/perl/t/results/info_tests/image_text_encoded.pl
- tta/perl/t/results/info_tests/image_text_file_only_and_alt.pl
- tta/perl/t/results/info_tests/index_entry_at_end_node.pl
- tta/perl/t/results/info_tests/invalid_node_name_no_warning.pl
- tta/perl/t/results/info_tests/invalid_node_name_warning.pl
- tta/perl/t/results/info_tests/known_encoding.pl
- tta/perl/t/results/info_tests/multiline_image_and_align.pl
- tta/perl/t/results/info_tests/multitable_anchor_and_index_entry.pl
- tta/perl/t/results/info_tests/nested_footnotes_separate.pl
- tta/perl/t/results/info_tests/nested_multitable_anchor_index.pl
- tta/perl/t/results/info_tests/no_node_but_top.pl
- tta/perl/t/results/info_tests/no_nodes.pl
- tta/perl/t/results/info_tests/no_top_node.pl
- tta/perl/t/results/info_tests/note_in_strong.pl
- tta/perl/t/results/info_tests/note_in_strong_end_of_line.pl
- tta/perl/t/results/info_tests/novalidate_empty_refs.pl
- tta/perl/t/results/info_tests/one_node_counted_elements.pl
- tta/perl/t/results/info_tests/only_documentencoding.pl
- tta/perl/t/results/info_tests/paragraphindent_and_preamble.pl
- tta/perl/t/results/info_tests/paragraphindent_asis_first.pl
- tta/perl/t/results/info_tests/paragraphindent_in_preamble_and_in_document.pl
- tta/perl/t/results/info_tests/paragraphindent_none_first.pl
- tta/perl/t/results/info_tests/paragraphindent_not_in_preamble.pl
- tta/perl/t/results/info_tests/pxref_test.pl
- tta/perl/t/results/info_tests/quote_node_names_info.pl
- tta/perl/t/results/info_tests/recursive_down_menu.pl
- tta/perl/t/results/info_tests/ref_tests.pl
- tta/perl/t/results/info_tests/similar_external_and_internal_node.pl
- tta/perl/t/results/info_tests/space_at_menu_end.pl
- tta/perl/t/results/info_tests/space_in_menu.pl
- tta/perl/t/results/info_tests/space_in_setfilename.pl
- tta/perl/t/results/info_tests/split_no_copying.pl
- tta/perl/t/results/info_tests/split_nocopying.pl
- tta/perl/t/results/info_tests/split_nocopying_split.pl
- tta/perl/t/results/info_tests/split_test_before_first_node.pl
- tta/perl/t/results/info_tests/split_test_before_first_node_no_empty_line.pl
- tta/perl/t/results/info_tests/test_index.pl
- tta/perl/t/results/info_tests/text_before_node.pl
- tta/perl/t/results/info_tests/top_node_normalization.pl
- tta/perl/t/results/info_tests/two_paragraphindent_in_preamble.pl
- tta/perl/t/results/info_tests/two_paragraphindent_in_preamble_and_in_document.pl
- tta/perl/t/results/info_tests/unknown_encoding.pl
- tta/perl/t/results/info_tests/xref_quote_long_item.pl
- tta/perl/t/results/info_tests/xref_test.pl
- tta/perl/t/results/init_files_tests/access_document_name_in_handler.pl
- tta/perl/t/results/init_files_tests/access_global_direction_unit_in_handler.pl
- tta/perl/t/results/init_files_tests/access_output_unit_in_handler.pl
- tta/perl/t/results/init_files_tests/access_tree_output_unit_in_handler.pl
- tta/perl/t/results/init_files_tests/button_replacement_and_direction_customization.pl
- tta/perl/t/results/init_files_tests/button_replacement_direction_strings_customization.pl
- tta/perl/t/results/init_files_tests/button_replacement_for_special_unit_direction.pl
- tta/perl/t/results/init_files_tests/customize_definition_index_translations.pl
- tta/perl/t/results/init_files_tests/customize_special_element.pl
- tta/perl/t/results/init_files_tests/customize_translations.pl
- tta/perl/t/results/init_files_tests/directions_buttons.pl
- tta/perl/t/results/init_files_tests/directions_buttons_buttons.pl
- tta/perl/t/results/init_files_tests/directions_string_base.pl
- tta/perl/t/results/init_files_tests/directions_string_undef.pl
- tta/perl/t/results/init_files_tests/directions_string_undef_texi2html.pl
- tta/perl/t/results/init_files_tests/documentation_examples.pl
- tta/perl/t/results/init_files_tests/documentation_examples_texi2html.pl
- tta/perl/t/results/init_files_tests/macro_defined_txiinternalvalue_in_translation.pl
- tta/perl/t/results/init_files_tests/modified_translation.pl
- tta/perl/t/results/init_files_tests/prepend_number_redirection_file_names.pl
- tta/perl/t/results/init_files_tests/printindex_set_direction.pl
- tta/perl/t/results/init_files_tests/redefined_buttons_functions.pl
- tta/perl/t/results/init_files_tests/redefined_need.pl
- tta/perl/t/results/init_files_tests/ref_for_special_unit_direction.pl
- tta/perl/t/results/init_files_tests/sc_formatting_with_css.pl
- tta/perl/t/results/init_files_tests/set_global_direction_for_relative_direction.pl
- tta/perl/t/results/init_files_tests/special_unit_direction_customization.pl
- tta/perl/t/results/init_files_tests/test_format_single_footnote_in_inline_content.pl
- tta/perl/t/results/init_files_tests/translation_in_parser_in_translation.pl
- tta/perl/t/results/init_files_tests/undefined_node_filename.pl
- tta/perl/t/results/init_files_tests/unknown_custom_variable.pl
- tta/perl/t/results/invalid_nestings/accents.pl
- tta/perl/t/results/invalid_nestings/bad_style_nesting.pl
- tta/perl/t/results/invalid_nestings/bad_tab_nesting.pl
- tta/perl/t/results/invalid_nestings/block_not_matching.pl
- tta/perl/t/results/invalid_nestings/cartouche_in_style_command.pl
- tta/perl/t/results/invalid_nestings/center.pl
- tta/perl/t/results/invalid_nestings/def_in_style_command.pl
- tta/perl/t/results/invalid_nestings/def_not_closed_in_menu_description.pl
- tta/perl/t/results/invalid_nestings/enumerate_in_style_command.pl
- tta/perl/t/results/invalid_nestings/example_in_style_command.pl
- tta/perl/t/results/invalid_nestings/float_in_style_command.pl
- tta/perl/t/results/invalid_nestings/flushright_in_style_command.pl
- tta/perl/t/results/invalid_nestings/footnote_in_ref.pl
- tta/perl/t/results/invalid_nestings/formats_not_closed_in_example.pl
- tta/perl/t/results/invalid_nestings/heading_commands_in_center.pl
- tta/perl/t/results/invalid_nestings/heading_commands_in_documentlanguage.pl
- tta/perl/t/results/invalid_nestings/heading_separator_in_accent_command.pl
- tta/perl/t/results/invalid_nestings/ignore_in_xref.pl
- tta/perl/t/results/invalid_nestings/ignored_text.pl
- tta/perl/t/results/invalid_nestings/in_errormsg.pl
- tta/perl/t/results/invalid_nestings/in_table.pl
- tta/perl/t/results/invalid_nestings/item_in_ref.pl
- tta/perl/t/results/invalid_nestings/item_tab_outside_of_table_lists.pl
- tta/perl/t/results/invalid_nestings/itemx_in_itemize_enumerate_in_table.pl
- tta/perl/t/results/invalid_nestings/menu_in_style_command.pl
- tta/perl/t/results/invalid_nestings/multitable_in_style_command.pl
- tta/perl/t/results/invalid_nestings/multitable_item_in_index.pl
- tta/perl/t/results/invalid_nestings/node_in_copying.pl
- tta/perl/t/results/invalid_nestings/node_in_copying_not_closed.pl
- tta/perl/t/results/invalid_nestings/node_on_index_entry_line.pl
- tta/perl/t/results/invalid_nestings/on_block_command_line.pl
- tta/perl/t/results/invalid_nestings/on_def_line.pl
- tta/perl/t/results/invalid_nestings/on_index_entry_line.pl
- tta/perl/t/results/invalid_nestings/on_itemize_line.pl
- tta/perl/t/results/invalid_nestings/on_node_line.pl
- tta/perl/t/results/invalid_nestings/on_section_line.pl
- tta/perl/t/results/invalid_nestings/on_subheading_line.pl
- tta/perl/t/results/invalid_nestings/quotation_in_ref.pl
- tta/perl/t/results/invalid_nestings/quotation_in_style_command.pl
- tta/perl/t/results/invalid_nestings/raw_block_on_line.pl
- tta/perl/t/results/invalid_nestings/recursive_copying.pl
- tta/perl/t/results/invalid_nestings/ref_in_ref.pl
- tta/perl/t/results/invalid_nestings/ref_to_top_in_anchor.pl
- tta/perl/t/results/invalid_nestings/section_in_copying.pl
- tta/perl/t/results/invalid_nestings/section_in_flushright.pl
- tta/perl/t/results/invalid_nestings/section_in_footnote.pl
- tta/perl/t/results/invalid_nestings/section_in_math.pl
- tta/perl/t/results/invalid_nestings/section_in_nested_block_commands.pl
- tta/perl/t/results/invalid_nestings/section_in_table.pl
- tta/perl/t/results/invalid_nestings/section_on_cartouche_line.pl
- tta/perl/t/results/invalid_nestings/section_on_def_line.pl
- tta/perl/t/results/invalid_nestings/section_on_defx_line.pl
- tta/perl/t/results/invalid_nestings/section_on_enumerate_line.pl
- tta/perl/t/results/invalid_nestings/section_on_float_line.pl
- tta/perl/t/results/invalid_nestings/section_on_index_entry_line.pl
- tta/perl/t/results/invalid_nestings/section_on_itemize_line.pl
- tta/perl/t/results/invalid_nestings/section_on_multitable_line.pl
- tta/perl/t/results/invalid_nestings/section_on_xtable_line.pl
- tta/perl/t/results/invalid_nestings/style_not_closed_before_first_node.pl
- tta/perl/t/results/invalid_nestings/style_not_closed_in_block_command.pl
- tta/perl/t/results/invalid_nestings/style_not_closed_in_table_line.pl
- tta/perl/t/results/invalid_nestings/style_not_closed_no_newline_root_commands.pl
- tta/perl/t/results/invalid_nestings/style_not_closed_root_commands.pl
- tta/perl/t/results/invalid_nestings/tab_in_index.pl
- tta/perl/t/results/invalid_nestings/table_in_code.pl
- tta/perl/t/results/invalid_nestings/table_not_closed_in_menu_comment.pl
- tta/perl/t/results/invalid_nestings/table_not_closed_in_menu_description.pl
- tta/perl/t/results/invalid_nestings/table_on_item_line.pl
- tta/perl/t/results/invalid_nestings/thischapter_in_footnote_in_evenfooting.pl
- tta/perl/t/results/invalid_nestings/thischapter_in_math_in_evenfooting.pl
- tta/perl/t/results/invalid_nestings/unclosed_verb_end_of_line_on_misc_line.pl
- tta/perl/t/results/invalid_nestings/unclosed_verb_on_misc_line.pl
- tta/perl/t/results/invalid_nestings/unclosed_verb_on_section_line.pl
- tta/perl/t/results/invalid_nestings/verbatim_in_ref.pl
- tta/perl/t/results/itemize/accent_argument.pl
- tta/perl/t/results/itemize/asis_as_itemize_argument.pl
- tta/perl/t/results/itemize/bad_enumerate_arguments.pl
- tta/perl/t/results/itemize/comment_first_on_enumerate_line.pl
- tta/perl/t/results/itemize/comment_first_on_itemize_line.pl
- tta/perl/t/results/itemize/empty_accent_argument.pl
- tta/perl/t/results/itemize/enumerate_and_empty_lines.pl
- tta/perl/t/results/itemize/enumerate_argument.pl
- tta/perl/t/results/itemize/enumerate_argument_item.pl
- tta/perl/t/results/itemize/enumerate_in_example.pl
- tta/perl/t/results/itemize/enumerate_letters.pl
- tta/perl/t/results/itemize/enumerate_more_letters.pl
- tta/perl/t/results/itemize/headitem_itemx_in_enumerate.pl
- tta/perl/t/results/itemize/headitem_itemx_in_itemize.pl
- tta/perl/t/results/itemize/inter_item_commands_in_enumerate.pl
- tta/perl/t/results/itemize/inter_item_commands_in_itemize.pl
- tta/perl/t/results/itemize/itemize_and_empty_lines.pl
- tta/perl/t/results/itemize/itemize_in_example.pl
- tta/perl/t/results/itemize/itemize_line_commands_with_brace.pl
- tta/perl/t/results/itemize/itemize_long_item.pl
- tta/perl/t/results/itemize/lone_end_itemize.pl
- tta/perl/t/results/itemize/not_closed_item.pl
- tta/perl/t/results/itemize/not_closed_itemize.pl
- tta/perl/t/results/itemize/table_in_itemize.pl
- tta/perl/t/results/itemize/w_argument.pl
- tta/perl/t/results/languages/appendix_translated.pl
- tta/perl/t/results/languages/command_translated.pl
- tta/perl/t/results/languages/documentlanguage.pl
- tta/perl/t/results/languages/documentlanguage_generated_master_menu.pl
- tta/perl/t/results/languages/documentlanguage_option.pl
- tta/perl/t/results/languages/documentlanguage_selection_accented_region.pl
- tta/perl/t/results/languages/documentlanguage_selection_region_unicode.pl
- tta/perl/t/results/languages/documentlanguage_unknown.pl
- tta/perl/t/results/languages/documentlanguagevariant_conversion.pl
- tta/perl/t/results/languages/documentlanguagevariant_documentscript.pl
- tta/perl/t/results/languages/documentlanguagevariant_selection.pl
- tta/perl/t/results/languages/documentscript_before_documentlanguage.pl
- tta/perl/t/results/languages/documentscript_conversion.pl
- tta/perl/t/results/languages/documentscript_documentlanguagevariant.pl
- tta/perl/t/results/languages/documentscript_selection.pl
- tta/perl/t/results/languages/documentscript_variant_reset_in_preamble.pl
- tta/perl/t/results/languages/invalid_documentlanguage.pl
- tta/perl/t/results/languages/multiple_documentlanguage.pl
- tta/perl/t/results/languages/multiple_in_preamble.pl
- tta/perl/t/results/languages/multiple_in_preamble_before_node.pl
- tta/perl/t/results/languages/multiple_lang_chapters.pl
- tta/perl/t/results/languages/multiple_lang_chapters_latex.pl
- tta/perl/t/results/languages/multiple_lang_chapters_texi2html.pl
- tta/perl/t/results/languages/simple_documentlanguage.pl
- tta/perl/t/results/languages/unknown_documentscript_selection.pl
- tta/perl/t/results/languages/unknown_language.pl
- tta/perl/t/results/languages/unknown_region.pl
- tta/perl/t/results/latex_tests/anchor_before_top.pl
- tta/perl/t/results/latex_tests/anchor_in_copying.pl
- tta/perl/t/results/latex_tests/anchor_in_copying_insertcopying_chap.pl
- tta/perl/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage.pl
- tta/perl/t/results/latex_tests/anchor_in_copying_insertcopying_titlepage_chap.pl
- tta/perl/t/results/latex_tests/anchor_links_xref_xrefautomaticsectiontitle.pl
- tta/perl/t/results/latex_tests/backslash_math.pl
- tta/perl/t/results/latex_tests/brace_in_index.pl
- tta/perl/t/results/latex_tests/custom_heading_with_include.pl
- tta/perl/t/results/latex_tests/custom_heading_with_include_in_command.pl
- tta/perl/t/results/latex_tests/custom_headings.pl
- tta/perl/t/results/latex_tests/custom_headings_and_comments.pl
- tta/perl/t/results/latex_tests/customize_informative_commands.pl
- tta/perl/t/results/latex_tests/enumerate_arguments.pl
- tta/perl/t/results/latex_tests/error_in_sectioning_command.pl
- tta/perl/t/results/latex_tests/example_in_cartouche.pl
- tta/perl/t/results/latex_tests/float_and_refs.pl
- tta/perl/t/results/latex_tests/fonttextsize.pl
- tta/perl/t/results/latex_tests/indices.pl
- tta/perl/t/results/latex_tests/indices_disable_encoding.pl
- tta/perl/t/results/latex_tests/informative_commands_in_top_node.pl
- tta/perl/t/results/latex_tests/maketitle_documentinfo_publication.pl
- tta/perl/t/results/latex_tests/nested_enumerate.pl
- tta/perl/t/results/latex_tests/nested_itemize.pl
- tta/perl/t/results/latex_tests/no_titlepage_and_setchapternewpage_odd.pl
- tta/perl/t/results/latex_tests/no_titlepage_and_setchapternewpage_on.pl
- tta/perl/t/results/latex_tests/node_before_top.pl
- tta/perl/t/results/latex_tests/pagesizes.pl
- tta/perl/t/results/latex_tests/pagetype.pl
- tta/perl/t/results/latex_tests/reference_to_from_appendix.pl
- tta/perl/t/results/latex_tests/setchapternewpage_on_odd_titlepage.pl
- tta/perl/t/results/latex_tests/setchapternewpage_on_odd_titlepage_set_headings.pl
- tta/perl/t/results/latex_tests/settitle_and_headings.pl
- tta/perl/t/results/latex_tests/shorttitlepage.pl
- tta/perl/t/results/latex_tests/thispart.pl
- tta/perl/t/results/latex_tests/three_setchapternewpage_on_odd_off.pl
- tta/perl/t/results/latex_tests/titlepage_and_headings.pl
- tta/perl/t/results/latex_tests/titlepage_and_setchapternewpage_odd.pl
- tta/perl/t/results/latex_tests/titlepage_and_setchapternewpage_on.pl
- tta/perl/t/results/latex_tests/titlepage_classical.pl
- tta/perl/t/results/latex_tests/titlepage_in_top_node.pl
- tta/perl/t/results/latex_tests/titlepage_long_title.pl
- tta/perl/t/results/latex_tests/titlepage_no_author.pl
- tta/perl/t/results/latex_tests/titlepage_no_title.pl
- tta/perl/t/results/latex_tests/titlepage_with_commands_classical.pl
- tta/perl/t/results/latex_tests/top_no_sectioning_command.pl
- tta/perl/t/results/latex_tests/two_setchapternewpage_odd_on.pl
- tta/perl/t/results/latex_tests/two_setchapternewpage_on_odd.pl
- tta/perl/t/results/latex_tests/vbar_in_index.pl
- tta/perl/t/results/latex_tests/verb.pl
- tta/perl/t/results/latex_tests/verbatim_in_smallformat.pl
- tta/perl/t/results/layout/navigation.pl
- tta/perl/t/results/layout/navigation_chapter.pl
- tta/perl/t/results/layout/navigation_chapter_no_header.pl
- tta/perl/t/results/layout/navigation_chapter_no_header_vertical.pl
- tta/perl/t/results/layout/navigation_chapter_vertical.pl
- tta/perl/t/results/layout/navigation_no_header.pl
- tta/perl/t/results/layout/navigation_no_header_vertical.pl
- tta/perl/t/results/layout/navigation_node.pl
- tta/perl/t/results/layout/navigation_node_no_header.pl
- tta/perl/t/results/layout/navigation_node_no_header_vertical.pl
- tta/perl/t/results/layout/navigation_node_vertical.pl
- tta/perl/t/results/layout/navigation_section.pl
- tta/perl/t/results/layout/navigation_section_no_header.pl
- tta/perl/t/results/layout/navigation_section_no_header_vertical.pl
- tta/perl/t/results/layout/navigation_section_vertical.pl
- tta/perl/t/results/layout/navigation_test_misc_file_collision.pl
- tta/perl/t/results/layout/navigation_test_undef_top_buttons.pl
- tta/perl/t/results/layout/navigation_test_zero_top_buttons.pl
- tta/perl/t/results/layout/navigation_vertical.pl
- tta/perl/t/results/layout/no_monolithic.pl
- tta/perl/t/results/layout/no_monolithic_only_toc_out.pl
- tta/perl/t/results/linemacro/api_doc_with_linemacro.pl
- tta/perl/t/results/linemacro/arobase_brace_in_linemacro_call.pl
- tta/perl/t/results/linemacro/begin_conditional_in_linemacro.pl
- tta/perl/t/results/linemacro/block_begin_end_in_linemacro_call.pl
- tta/perl/t/results/linemacro/blockitem_no_item.pl
- tta/perl/t/results/linemacro/brace_command_not_closed.pl
- tta/perl/t/results/linemacro/braces_after_text.pl
- tta/perl/t/results/linemacro/call_macro_in_linemacro_body.pl
- tta/perl/t/results/linemacro/call_macro_in_linemacro_call.pl
- tta/perl/t/results/linemacro/comment_at_end_of_linemacro_call.pl
- tta/perl/t/results/linemacro/comment_in_linemacro_call.pl
- tta/perl/t/results/linemacro/comment_in_one_argument_linemacro_call.pl
- tta/perl/t/results/linemacro/comment_on_linemacro_call_macro_expansion.pl
- tta/perl/t/results/linemacro/comment_on_linemacro_call_out_of_braces.pl
- tta/perl/t/results/linemacro/empty_last_argument.pl
- tta/perl/t/results/linemacro/end_conditional_in_linemacro.pl
- tta/perl/t/results/linemacro/last_argument_with_braces.pl
- tta/perl/t/results/linemacro/missing_formal_arg.pl
- tta/perl/t/results/linemacro/nested_linemacro_calls.pl
- tta/perl/t/results/linemacro/newline_and_continuation_in_brace.pl
- tta/perl/t/results/linemacro/no_arguments.pl
- tta/perl/t/results/linemacro/paragraph_no_paragraph.pl
- tta/perl/t/results/linemacro/protected_spaces_on_line.pl
- tta/perl/t/results/linemacro/protection_of_end_of_line_by_command.pl
- tta/perl/t/results/linemacro/recursive_linemacro_in_body.pl
- tta/perl/t/results/linemacro/recursive_linemacro_in_call.pl
- tta/perl/t/results/linemacro/simple_nested_linemacro_calls.pl
- tta/perl/t/results/linemacro/spaces_after_command_in_call.pl
- tta/perl/t/results/linemacro/spaces_after_macro_linemacro_commands_in_call.pl
- tta/perl/t/results/linemacro/spaces_after_unknown_command_in_call.pl
- tta/perl/t/results/linemacro/spaces_in_args.pl
- tta/perl/t/results/linemacro/spaces_in_call.pl
- tta/perl/t/results/linemacro/text_arguments.pl
- tta/perl/t/results/linemacro/verb_in_linemacro_call.pl
- tta/perl/t/results/linemacro/verb_not_closed.pl
- tta/perl/t/results/linemacro/verb_with_arobase_in_linemacro_call.pl
- tta/perl/t/results/linemacro/verb_with_brace_in_linemacro_call.pl
- tta/perl/t/results/macro/arg_body_expansion_order.pl
- tta/perl/t/results/macro/arg_not_closed.pl
- tta/perl/t/results/macro/arobase_brace_in_macro_call.pl
- tta/perl/t/results/macro/backslash_in_arg.pl
- tta/perl/t/results/macro/bad_argument.pl
- tta/perl/t/results/macro/bad_formal_arg.pl
- tta/perl/t/results/macro/bad_macro_name_with_underscore.pl
- tta/perl/t/results/macro/bib_example.pl
- tta/perl/t/results/macro/bye_in_macro.pl
- tta/perl/t/results/macro/closing_brace_in_macro_call_in_ignored_inline.pl
- tta/perl/t/results/macro/complete_macro_for_end.pl
- tta/perl/t/results/macro/complex_argument.pl
- tta/perl/t/results/macro/cpp_directives_after_macros.pl
- tta/perl/t/results/macro/cpp_directives_in_macro.pl
- tta/perl/t/results/macro/cpp_directives_line_value_macro.pl
- tta/perl/t/results/macro/definfoenclose_replaced_by_macro.pl
- tta/perl/t/results/macro/double_macro_definition.pl
- tta/perl/t/results/macro/double_macro_expansion_in_set_arg_comment.pl
- tta/perl/t/results/macro/double_macro_expansion_in_set_comment.pl
- tta/perl/t/results/macro/double_recursive_macro_call.pl
- tta/perl/t/results/macro/empty_end.pl
- tta/perl/t/results/macro/empty_macro_argument.pl
- tta/perl/t/results/macro/empty_macro_in_text_no_arg.pl
- tta/perl/t/results/macro/empty_macro_no_arg.pl
- tta/perl/t/results/macro/expand_two_same.pl
- tta/perl/t/results/macro/expansion_order.pl
- tta/perl/t/results/macro/form_feeds.pl
- tta/perl/t/results/macro/glossary.pl
- tta/perl/t/results/macro/ifclear_in_macro.pl
- tta/perl/t/results/macro/ifset_and_end_isef_in_macro.pl
- tta/perl/t/results/macro/ifset_in_macro.pl
- tta/perl/t/results/macro/ifset_in_macro_set.pl
- tta/perl/t/results/macro/ignored_macro_definition.pl
- tta/perl/t/results/macro/implicit_quoting_one_arg.pl
- tta/perl/t/results/macro/implicit_quoting_recursion.pl
- tta/perl/t/results/macro/include_after_empty_line_arg.pl
- tta/perl/t/results/macro/leading_spaces_no_ignore.pl
- tta/perl/t/results/macro/line_after_recursive_call.pl
- tta/perl/t/results/macro/line_end_accent_command_macro_call.pl
- tta/perl/t/results/macro/macro_after_paragraph.pl
- tta/perl/t/results/macro/macro_alias_definfoenclose_defindex.pl
- tta/perl/t/results/macro/macro_before_specific_line_command_args.pl
- tta/perl/t/results/macro/macro_call_empty_middle_arg.pl
- tta/perl/t/results/macro/macro_call_empty_two_arg.pl
- tta/perl/t/results/macro/macro_call_in_ignored_inlinefmtifelse.pl
- tta/perl/t/results/macro/macro_call_in_inlinefmtifelse_format.pl
- tta/perl/t/results/macro/macro_call_in_node_manual.pl
- tta/perl/t/results/macro/macro_end_call_in_ignored_inlinefmt.pl
- tta/perl/t/results/macro/macro_end_call_in_ignored_inlinefmtifelse.pl
- tta/perl/t/results/macro/macro_end_call_in_ignored_inlinefmtifelse_else.pl
- tta/perl/t/results/macro/macro_end_call_in_ignored_inlineraw.pl
- tta/perl/t/results/macro/macro_end_call_in_ignored_raw.pl
- tta/perl/t/results/macro/macro_expands_to_empty.pl
- tta/perl/t/results/macro/macro_expansion.pl
- tta/perl/t/results/macro/macro_expansion_end_in_conditional_end.pl
- tta/perl/t/results/macro/macro_expansion_end_in_conditional_line.pl
- tta/perl/t/results/macro/macro_expansion_end_in_ignored_ifset_content.pl
- tta/perl/t/results/macro/macro_expansion_end_in_ignored_nested_conditional.pl
- tta/perl/t/results/macro/macro_expansion_end_in_ignored_nested_different_conditional.pl
- tta/perl/t/results/macro/macro_expansion_in_multitable_prototype.pl
- tta/perl/t/results/macro/macro_expansion_in_raw_line_leading_spaces.pl
- tta/perl/t/results/macro/macro_expansion_in_set_comment.pl
- tta/perl/t/results/macro/macro_expansion_in_set_comment_command.pl
- tta/perl/t/results/macro/macro_expansion_in_set_comment_leading_spaces.pl
- tta/perl/t/results/macro/macro_for_dot_in_menu_not_separator.pl
- tta/perl/t/results/macro/macro_for_end.pl
- tta/perl/t/results/macro/macro_for_ignored_line_command.pl
- tta/perl/t/results/macro/macro_for_verb.pl
- tta/perl/t/results/macro/macro_imbricated_with_beginning_command_name.pl
- tta/perl/t/results/macro/macro_in_accent.pl
- tta/perl/t/results/macro/macro_in_brace_command.pl
- tta/perl/t/results/macro/macro_in_def_delimiters.pl
- tta/perl/t/results/macro/macro_in_empty_menu_comment.pl
- tta/perl/t/results/macro/macro_in_empty_multitable_empty_before_item.pl
- tta/perl/t/results/macro/macro_in_empty_table_empty_before_item.pl
- tta/perl/t/results/macro/macro_in_empty_text.pl
- tta/perl/t/results/macro/macro_in_end_argument.pl
- tta/perl/t/results/macro/macro_in_ifset.pl
- tta/perl/t/results/macro/macro_in_ifset_end_in_arg.pl
- tta/perl/t/results/macro/macro_in_index_commands.pl
- tta/perl/t/results/macro/macro_in_invalid_documentencoding.pl
- tta/perl/t/results/macro/macro_in_macro_arg.pl
- tta/perl/t/results/macro/macro_in_macro_arg_simpler.pl
- tta/perl/t/results/macro/macro_in_menu.pl
- tta/perl/t/results/macro/macro_in_menu_comment_closed_by_detailmenu.pl
- tta/perl/t/results/macro/macro_in_menu_comment_like_entry.pl
- tta/perl/t/results/macro/macro_in_menu_description.pl
- tta/perl/t/results/macro/macro_in_misc_commands.pl
- tta/perl/t/results/macro/macro_in_multitable_empty_before_item.pl
- tta/perl/t/results/macro/macro_in_table_empty_before_item.pl
- tta/perl/t/results/macro/macro_inlineifcond_end_in_empty_ignored.pl
- tta/perl/t/results/macro/macro_inlineifcond_end_in_empty_set.pl
- tta/perl/t/results/macro/macro_name_with_digit.pl
- tta/perl/t/results/macro/macro_name_with_hyphen.pl
- tta/perl/t/results/macro/macro_name_zero.pl
- tta/perl/t/results/macro/macro_no_arg_bad_expansion.pl
- tta/perl/t/results/macro/macro_no_arg_expansion.pl
- tta/perl/t/results/macro/macro_no_argument.pl
- tta/perl/t/results/macro/macro_not_closed.pl
- tta/perl/t/results/macro/macro_one_arg_end_of_file.pl
- tta/perl/t/results/macro/macro_replaced_by_definfoenclose.pl
- tta/perl/t/results/macro/macro_with_error_at_end_line_after_macro.pl
- tta/perl/t/results/macro/macro_zero.pl
- tta/perl/t/results/macro/nested_macro_call.pl
- tta/perl/t/results/macro/no_macrobody.pl
- tta/perl/t/results/macro/non_ascii_in_macro_name.pl
- tta/perl/t/results/macro/paragraph_and_macro.pl
- tta/perl/t/results/macro/protect_comma_macro_line.pl
- tta/perl/t/results/macro/protect_in_body.pl
- tta/perl/t/results/macro/protect_in_body_line_arg.pl
- tta/perl/t/results/macro/protect_in_body_one_arg.pl
- tta/perl/t/results/macro/recursive_call_in_argument.pl
- tta/perl/t/results/macro/recursive_call_in_macro.pl
- tta/perl/t/results/macro/recursive_call_in_rmacro.pl
- tta/perl/t/results/macro/redefine_texinfo_macro.pl
- tta/perl/t/results/macro/simple_imbricated_macro.pl
- tta/perl/t/results/macro/simple_imbricated_macro_rmacro.pl
- tta/perl/t/results/macro/space_macro_after_end.pl
- tta/perl/t/results/macro/space_macro_after_end_verbatim.pl
- tta/perl/t/results/macro/text_before_after.pl
- tta/perl/t/results/macro/too_much_args.pl
- tta/perl/t/results/macro/two_macros_on_a_line.pl
- tta/perl/t/results/macro/unknown_macro_on_line_command.pl
- tta/perl/t/results/macro/unpaired_backslash_in_macro_body.pl
- tta/perl/t/results/macro/verb_with_arobase_in_macro_call.pl
- tta/perl/t/results/macro/verb_with_brace_in_macro_call.pl
- tta/perl/t/results/macro/zero_argument.pl
- tta/perl/t/results/macro/zero_argument_comment.pl
- tta/perl/t/results/menu/appendix_and_associated_part_in_generated_menu.pl
- tta/perl/t/results/menu/bad_beginning.pl
- tta/perl/t/results/menu/block_commands_in_menu_description.pl
- tta/perl/t/results/menu/commands_in_nodedescriptionblock.pl
- tta/perl/t/results/menu/comment_on_menu_line.pl
- tta/perl/t/results/menu/dash_in_menu.pl
- tta/perl/t/results/menu/detailmenu.pl
- tta/perl/t/results/menu/detailmenu_in_description.pl
- tta/perl/t/results/menu/detailmenu_on_subnodes.pl
- tta/perl/t/results/menu/detailmenu_unknown_node.pl
- tta/perl/t/results/menu/direntry_dircategory_after_first_node.pl
- tta/perl/t/results/menu/empty_leading_menu_comment.pl
- tta/perl/t/results/menu/empty_menu_description.pl
- tta/perl/t/results/menu/empty_menu_entry_name.pl
- tta/perl/t/results/menu/entry_after_detailmenu.pl
- tta/perl/t/results/menu/example_in_menu_comment.pl
- tta/perl/t/results/menu/example_in_menu_description.pl
- tta/perl/t/results/menu/format_menu_undef.pl
- tta/perl/t/results/menu/formats_in_menu.pl
- tta/perl/t/results/menu/inlineraw_in_menu_description.pl
- tta/perl/t/results/menu/invalid_info_menu_entry.pl
- tta/perl/t/results/menu/leading_space_before_menu_star.pl
- tta/perl/t/results/menu/menu_entry_name.pl
- tta/perl/t/results/menu/menu_entry_name_comment.pl
- tta/perl/t/results/menu/menu_entry_no_entry.pl
- tta/perl/t/results/menu/menu_entry_no_entry_location.pl
- tta/perl/t/results/menu/menu_entry_node.pl
- tta/perl/t/results/menu/menu_entry_node_comments.pl
- tta/perl/t/results/menu/menu_in_deffn.pl
- tta/perl/t/results/menu/menu_in_example.pl
- tta/perl/t/results/menu/menu_no_closed_after_empty_line.pl
- tta/perl/t/results/menu/menu_no_closed_entry_beginning.pl
- tta/perl/t/results/menu/menu_no_closed_in_description.pl
- tta/perl/t/results/menu/menu_no_closed_in_entry.pl
- tta/perl/t/results/menu/menu_no_closed_star.pl
- tta/perl/t/results/menu/menu_node_unterminated.pl
- tta/perl/t/results/menu/menu_pointing_to_anchor.pl
- tta/perl/t/results/menu/menu_pointing_to_anchor_nodes.pl
- tta/perl/t/results/menu/menu_title_before_entries.pl
- tta/perl/t/results/menu/missing_detailmenu_menu_entry_names.pl
- tta/perl/t/results/menu/missing_detailmenu_on_subnodes.pl
- tta/perl/t/results/menu/multiple_menus.pl
- tta/perl/t/results/menu/no_colon_in_menu.pl
- tta/perl/t/results/menu/nodedescription_descriptions.pl
- tta/perl/t/results/menu/nodedescriptionblock_descriptions.pl
- tta/perl/t/results/menu/part_appendix_in_generated_menu.pl
- tta/perl/t/results/menu/reference_to_external_manual.pl
- tta/perl/t/results/menu/sc_in_menu.pl
- tta/perl/t/results/menu/simple.pl
- tta/perl/t/results/menu/simple_no_menu.pl
- tta/perl/t/results/menu/space_and_commands_in_menu_node.pl
- tta/perl/t/results/menu/submenu_in_example.pl
- tta/perl/t/results/menu/verb_in_menu_description.pl
- tta/perl/t/results/misc_commands/also_not_line.pl
- tta/perl/t/results/misc_commands/author_outside_titlepage_quotation.pl
- tta/perl/t/results/misc_commands/bad_documentlanguage.pl
- tta/perl/t/results/misc_commands/bye.pl
- tta/perl/t/results/misc_commands/codequoteundirected_codequotebacktick.pl
- tta/perl/t/results/misc_commands/command_in_heading_footing.pl
- tta/perl/t/results/misc_commands/command_line_in_paragraph.pl
- tta/perl/t/results/misc_commands/command_not_closed_in_documentencoding.pl
- tta/perl/t/results/misc_commands/command_not_closed_on_center_line.pl
- tta/perl/t/results/misc_commands/comment_space_command_on_line.pl
- tta/perl/t/results/misc_commands/comment_without_line.pl
- tta/perl/t/results/misc_commands/comments_in_text.pl
- tta/perl/t/results/misc_commands/contents.pl
- tta/perl/t/results/misc_commands/contents_arg_and_comment.pl
- tta/perl/t/results/misc_commands/defindex_too_much_args.pl
- tta/perl/t/results/misc_commands/definfoenclose.pl
- tta/perl/t/results/misc_commands/definfoenclose_command_on_section_line.pl
- tta/perl/t/results/misc_commands/definfoenclose_nestings.pl
- tta/perl/t/results/misc_commands/definfoenclose_with_empty_arg.pl
- tta/perl/t/results/misc_commands/documentencoding_utf8.pl
- tta/perl/t/results/misc_commands/documentencoding_zero.pl
- tta/perl/t/results/misc_commands/documentlanguagevariant_arguments.pl
- tta/perl/t/results/misc_commands/documentlanguagevariant_validity.pl
- tta/perl/t/results/misc_commands/documentscript_argument.pl
- tta/perl/t/results/misc_commands/double_exdent.pl
- tta/perl/t/results/misc_commands/empty_center.pl
- tta/perl/t/results/misc_commands/empty_center_with_arg.pl
- tta/perl/t/results/misc_commands/empty_documentencoding.pl
- tta/perl/t/results/misc_commands/exdent_no_line.pl
- tta/perl/t/results/misc_commands/footnote_in_center.pl
- tta/perl/t/results/misc_commands/heading_command_in_commands.pl
- tta/perl/t/results/misc_commands/incorrect_allowcodebreaks_argument.pl
- tta/perl/t/results/misc_commands/indent_in_command_in_paragraph.pl
- tta/perl/t/results/misc_commands/indent_in_quotation.pl
- tta/perl/t/results/misc_commands/indent_with_command_after_without_space.pl
- tta/perl/t/results/misc_commands/indent_with_text_after_without_space.pl
- tta/perl/t/results/misc_commands/index_entries.pl
- tta/perl/t/results/misc_commands/invalid_documentencoding.pl
- tta/perl/t/results/misc_commands/invalid_kbdinputstyle.pl
- tta/perl/t/results/misc_commands/kbdinputstyle.pl
- tta/perl/t/results/misc_commands/kbdinputstyle_in_table.pl
- tta/perl/t/results/misc_commands/many_lines.pl
- tta/perl/t/results/misc_commands/no_empty_line_between_headings.pl
- tta/perl/t/results/misc_commands/nodedescription.pl
- tta/perl/t/results/misc_commands/noindent_after_smallexample.pl
- tta/perl/t/results/misc_commands/noindent_empty_para.pl
- tta/perl/t/results/misc_commands/noindent_in_paragraph.pl
- tta/perl/t/results/misc_commands/noindent_indent.pl
- tta/perl/t/results/misc_commands/ref_in_center.pl
- tta/perl/t/results/misc_commands/setfilename.pl
- tta/perl/t/results/misc_commands/simple.pl
- tta/perl/t/results/misc_commands/sp.pl
- tta/perl/t/results/misc_commands/synindex_too_much_args.pl
- tta/perl/t/results/misc_commands/test_allowcodebreaks.pl
- tta/perl/t/results/misc_commands/text_before_and_after_bye.pl
- tta/perl/t/results/misc_commands/text_before_line_command.pl
- tta/perl/t/results/misc_commands/vskip.pl
- tta/perl/t/results/moresectioning/anchor_in_footnote.pl
- tta/perl/t/results/moresectioning/anchor_in_footnote_separate.pl
- tta/perl/t/results/moresectioning/anchor_in_footnote_separate_split_node.pl
- tta/perl/t/results/moresectioning/anchor_in_footnote_split_node.pl
- tta/perl/t/results/moresectioning/chapter_sections.pl
- tta/perl/t/results/moresectioning/character_and_spaces_in_refs.pl
- tta/perl/t/results/moresectioning/character_and_spaces_in_refs_out.pl
- tta/perl/t/results/moresectioning/complex.pl
- tta/perl/t/results/moresectioning/complex_split_at_node.pl
- tta/perl/t/results/moresectioning/contents.pl
- tta/perl/t/results/moresectioning/contents_and_shortcontents.pl
- tta/perl/t/results/moresectioning/contents_at_begin_chapter_without_node.pl
- tta/perl/t/results/moresectioning/contents_at_end_document.pl
- tta/perl/t/results/moresectioning/contents_at_end_document_after_node.pl
- tta/perl/t/results/moresectioning/contents_in_document.pl
- tta/perl/t/results/moresectioning/empty_top_node_up.pl
- tta/perl/t/results/moresectioning/equivalent_nodes_defined_linked.pl
- tta/perl/t/results/moresectioning/internal_top_node_up.pl
- tta/perl/t/results/moresectioning/lone_chapter_between_nodes.pl
- tta/perl/t/results/moresectioning/lowered_subsubsection.pl
- tta/perl/t/results/moresectioning/loweredheading.pl
- tta/perl/t/results/moresectioning/more_sections_than_nodes.pl
- tta/perl/t/results/moresectioning/more_sections_than_nodes_texi2html.pl
- tta/perl/t/results/moresectioning/no_element.pl
- tta/perl/t/results/moresectioning/nodes_before_after_top_xref.pl
- tta/perl/t/results/moresectioning/nodes_no_section_footnote_no_top_node_output.pl
- tta/perl/t/results/moresectioning/non_automatic_internal_top_node_up.pl
- tta/perl/t/results/moresectioning/non_automatic_top_node_up_and_url.pl
- tta/perl/t/results/moresectioning/non_automatic_top_node_up_url.pl
- tta/perl/t/results/moresectioning/only_special_spaces_node.pl
- tta/perl/t/results/moresectioning/only_special_spaces_node_transliterate.pl
- tta/perl/t/results/moresectioning/placed_things_before_element.pl
- tta/perl/t/results/moresectioning/placed_things_before_element_no_use_node.pl
- tta/perl/t/results/moresectioning/placed_things_before_node.pl
- tta/perl/t/results/moresectioning/raiselowersections.pl
- tta/perl/t/results/moresectioning/rec_nodes.pl
- tta/perl/t/results/moresectioning/section_in_unnumbered_info.pl
- tta/perl/t/results/moresectioning/section_in_unnumbered_plaintext.pl
- tta/perl/t/results/moresectioning/sectioning_part_appendix.pl
- tta/perl/t/results/moresectioning/sectioning_part_appendix_no_top.pl
- tta/perl/t/results/moresectioning/sectioning_part_appendix_texi2html_chapter.pl
- tta/perl/t/results/moresectioning/sections_test.pl
- tta/perl/t/results/moresectioning/sections_test_no_use_nodes.pl
- tta/perl/t/results/moresectioning/sections_test_no_use_nodes_use_node_directions.pl
- tta/perl/t/results/moresectioning/shortcontents.pl
- tta/perl/t/results/moresectioning/special_spaces_in_nodes.pl
- tta/perl/t/results/moresectioning/top_chapter_sections.pl
- tta/perl/t/results/moresectioning/top_node_up_url.pl
- tta/perl/t/results/moresectioning/topic_guide.pl
- tta/perl/t/results/multitable/empty_headitem.pl
- tta/perl/t/results/multitable/empty_item_tab.pl
- tta/perl/t/results/multitable/empty_multitable_with_cells.pl
- tta/perl/t/results/multitable/fullwidth_in_prototype.pl
- tta/perl/t/results/multitable/inter_item_commands_in_multitable.pl
- tta/perl/t/results/multitable/multitable_begin_with_tab.pl
- tta/perl/t/results/multitable/multitable_bracketed_no_inter_space_prototype.pl
- tta/perl/t/results/multitable/multitable_bracketed_prototype_empty_not_closed.pl
- tta/perl/t/results/multitable/multitable_bracketed_prototype_empty_not_closed_comment.pl
- tta/perl/t/results/multitable/multitable_bracketed_prototype_empty_spaces_not_closed.pl
- tta/perl/t/results/multitable/multitable_bracketed_prototype_empty_spaces_not_closed_comment.pl
- tta/perl/t/results/multitable/multitable_bracketed_prototype_not_closed.pl
- tta/perl/t/results/multitable/multitable_bracketed_prototype_not_closed_comment.pl
- tta/perl/t/results/multitable/multitable_bracketed_prototype_not_closed_space_comment.pl
- tta/perl/t/results/multitable/multitable_empty_bracketed_prototype.pl
- tta/perl/t/results/multitable/multitable_figure_space.pl
- tta/perl/t/results/multitable/multitable_in_example.pl
- tta/perl/t/results/multitable/multitable_not_closed.pl
- tta/perl/t/results/multitable/multitable_not_closed_item.pl
- tta/perl/t/results/multitable/multitable_not_closed_item_tab.pl
- tta/perl/t/results/multitable/multitable_one_column_too_much_cells.pl
- tta/perl/t/results/multitable/multitable_two_columns_too_much_cells.pl
- tta/perl/t/results/multitable/multitable_with_empty_item_tab.pl
- tta/perl/t/results/multitable/not_letters_in_prototype.pl
- tta/perl/t/results/multitable/paragraph_in_cells.pl
- tta/perl/t/results/multitable/prototype_brace_no_brace.pl
- tta/perl/t/results/multitable/prototype_brace_no_brace_comment.pl
- tta/perl/t/results/multitable/prototype_no_brace.pl
- tta/perl/t/results/multitable/ref_in_multitable.pl
- tta/perl/t/results/multitable/w_in_multitable.pl
- tta/perl/t/results/paragraph/close_paragraph_command.pl
- tta/perl/t/results/paragraph/commands_in_flushright.pl
- tta/perl/t/results/paragraph/comment_between_text.pl
- tta/perl/t/results/paragraph/comment_in_quotation.pl
- tta/perl/t/results/paragraph/double_style_paragraph.pl
- tta/perl/t/results/paragraph/image_in_paragraph.pl
- tta/perl/t/results/paragraph/indent_before_macro_definition_and_other.pl
- tta/perl/t/results/paragraph/no_paragraph_commands.pl
- tta/perl/t/results/paragraph/paragraph_command.pl
- tta/perl/t/results/paragraph/paragraph_count_and_example.pl
- tta/perl/t/results/paragraph/paragraph_in_style_command.pl
- tta/perl/t/results/paragraph/paragraph_indent_asis.pl
- tta/perl/t/results/paragraph/sole_image.pl
- tta/perl/t/results/paragraph/text.pl
- tta/perl/t/results/paragraph/text_comment.pl
- tta/perl/t/results/paragraph/text_line.pl
- tta/perl/t/results/paragraph/text_space_comment.pl
- tta/perl/t/results/paragraph/two_lines.pl
- tta/perl/t/results/plaintext_tests/U_with_utf8_enable_encoding.pl
- tta/perl/t/results/plaintext_tests/accent_command_punctuation.pl
- tta/perl/t/results/plaintext_tests/accents_in_var_enable_encoding.pl
- tta/perl/t/results/plaintext_tests/after_punctuation_character_in_command.pl
- tta/perl/t/results/plaintext_tests/all_spaces.pl
- tta/perl/t/results/plaintext_tests/anchor_and_empty_lines.pl
- tta/perl/t/results/plaintext_tests/at_commands_glued_in_example.pl
- tta/perl/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl
- tta/perl/t/results/plaintext_tests/before_accent_punctuation.pl
- tta/perl/t/results/plaintext_tests/cartouche_and_paragraph_indentation.pl
- tta/perl/t/results/plaintext_tests/characters_and_commands_in_var.pl
- tta/perl/t/results/plaintext_tests/chinese_mixed_with_en.pl
- tta/perl/t/results/plaintext_tests/code_commands_and_punctuation.pl
- tta/perl/t/results/plaintext_tests/command_brace_no_arg_punctuation.pl
- tta/perl/t/results/plaintext_tests/commands_and_punctuation.pl
- tta/perl/t/results/plaintext_tests/east_asian_in_w.pl
- tta/perl/t/results/plaintext_tests/empty_line_in_example_end.pl
- tta/perl/t/results/plaintext_tests/empty_multitable_in_itemize.pl
- tta/perl/t/results/plaintext_tests/end_sentence_space_protected.pl
- tta/perl/t/results/plaintext_tests/expanded_tex.pl
- tta/perl/t/results/plaintext_tests/flushright_not_closed_and_format.pl
- tta/perl/t/results/plaintext_tests/html_expanded.pl
- tta/perl/t/results/plaintext_tests/inhibit_punctuation.pl
- tta/perl/t/results/plaintext_tests/insert_copying_and_paragraph.pl
- tta/perl/t/results/plaintext_tests/invalid_accent_punctuation.pl
- tta/perl/t/results/plaintext_tests/isolated_html_expanded.pl
- tta/perl/t/results/plaintext_tests/itemize_in_headitem_in_example.pl
- tta/perl/t/results/plaintext_tests/japanese_utf8.pl
- tta/perl/t/results/plaintext_tests/line_passed_and_formats.pl
- tta/perl/t/results/plaintext_tests/lone_braces_in_inlineraw.pl
- tta/perl/t/results/plaintext_tests/long_line.pl
- tta/perl/t/results/plaintext_tests/long_uref_after_item.pl
- tta/perl/t/results/plaintext_tests/multiline_image_and_align.pl
- tta/perl/t/results/plaintext_tests/multiline_verb_after_space.pl
- tta/perl/t/results/plaintext_tests/multitable.pl
- tta/perl/t/results/plaintext_tests/multitable_in_example_extraneous_item_tab.pl
- tta/perl/t/results/plaintext_tests/multitable_in_example_extraneous_tab.pl
- tta/perl/t/results/plaintext_tests/nested_code_commands.pl
- tta/perl/t/results/plaintext_tests/nested_indentedblock.pl
- tta/perl/t/results/plaintext_tests/nested_multitable.pl
- tta/perl/t/results/plaintext_tests/no_empty_line_after_section.pl
- tta/perl/t/results/plaintext_tests/no_punctuation_commands.pl
- tta/perl/t/results/plaintext_tests/no_punctuation_commands_frenchspacing.pl
- tta/perl/t/results/plaintext_tests/non_break_spaces.pl
- tta/perl/t/results/plaintext_tests/paragraphindent.pl
- tta/perl/t/results/plaintext_tests/protect_spaces_on_line.pl
- tta/perl/t/results/plaintext_tests/protected_space_end_line.pl
- tta/perl/t/results/plaintext_tests/punctuation.pl
- tta/perl/t/results/plaintext_tests/punctuation_abbr_acronym.pl
- tta/perl/t/results/plaintext_tests/punctuation_and_code_style_commands.pl
- tta/perl/t/results/plaintext_tests/punctuation_and_code_style_commands_utf8.pl
- tta/perl/t/results/plaintext_tests/punctuation_and_footnotes.pl
- tta/perl/t/results/plaintext_tests/punctuation_and_footnotes_frenchspacing.pl
- tta/perl/t/results/plaintext_tests/punctuation_and_upper_case_commands.pl
- tta/perl/t/results/plaintext_tests/punctuation_and_upper_case_commands_utf8.pl
- tta/perl/t/results/plaintext_tests/punctuation_at_end_command.pl
- tta/perl/t/results/plaintext_tests/punctuation_commands.pl
- tta/perl/t/results/plaintext_tests/punctuation_commands_frenchspacing.pl
- tta/perl/t/results/plaintext_tests/punctuation_frenchspacing.pl
- tta/perl/t/results/plaintext_tests/punctuation_in_command.pl
- tta/perl/t/results/plaintext_tests/punctuation_in_command_end_line.pl
- tta/perl/t/results/plaintext_tests/punctuation_in_sc.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_ascii_glyph.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_ascii_glyph_latin1.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_ascii_glyph_usascii.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_default.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_default_latin1.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_default_usascii.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_disable_encoding.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_disable_encoding_latin1.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_disable_encoding_usascii.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_to_utf8_ascii_glyph_latin1.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_to_utf8_ascii_glyph_usascii.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_to_utf8_latin1.pl
- tta/perl/t/results/plaintext_tests/punctuation_sc_accents_to_utf8_usascii.pl
- tta/perl/t/results/plaintext_tests/quote_node_names.pl
- tta/perl/t/results/plaintext_tests/sc_with_utf8_enable_encoding.pl
- tta/perl/t/results/plaintext_tests/settitle_and_empty_top.pl
- tta/perl/t/results/plaintext_tests/sp_with_text_before_in_example.pl
- tta/perl/t/results/plaintext_tests/split_punctuation_detection_in_commands.pl
- tta/perl/t/results/plaintext_tests/star_at_command_formatting.pl
- tta/perl/t/results/plaintext_tests/tab_in_table_in_example.pl
- tta/perl/t/results/plaintext_tests/tab_item_in_example.pl
- tta/perl/t/results/plaintext_tests/transparent_text.pl
- tta/perl/t/results/preformatted/caption_in_example.pl
- tta/perl/t/results/preformatted/comment_example_and_blank_lines.pl
- tta/perl/t/results/preformatted/comments_in_example.pl
- tta/perl/t/results/preformatted/def_in_example.pl
- tta/perl/t/results/preformatted/empty_line.pl
- tta/perl/t/results/preformatted/empty_line_style_command.pl
- tta/perl/t/results/preformatted/example_at_commands_arguments.pl
- tta/perl/t/results/preformatted/example_class.pl
- tta/perl/t/results/preformatted/example_empty_arguments.pl
- tta/perl/t/results/preformatted/example_invalid_at_commands_arguments.pl
- tta/perl/t/results/preformatted/example_multi_class.pl
- tta/perl/t/results/preformatted/exampleindent_set.pl
- tta/perl/t/results/preformatted/exampleindent_set_nestings.pl
- tta/perl/t/results/preformatted/exampleindent_zero.pl
- tta/perl/t/results/preformatted/exampleindent_zero_nestings.pl
- tta/perl/t/results/preformatted/insertcopying_in_example.pl
- tta/perl/t/results/preformatted/nested_example_and_comment.pl
- tta/perl/t/results/preformatted/nested_formats.pl
- tta/perl/t/results/preformatted/page_in_example.pl
- tta/perl/t/results/preformatted/quote_dash_in_display.pl
- tta/perl/t/results/preformatted/quote_dash_in_example.pl
- tta/perl/t/results/preformatted/text_on_display_command_line.pl
- tta/perl/t/results/preformatted/text_on_example_command_line.pl
- tta/perl/t/results/preformatted/titlefont_in_example.pl
- tta/perl/t/results/quotation/comment_on_quotation_line.pl
- tta/perl/t/results/quotation/empty_quotation.pl
- tta/perl/t/results/quotation/footnote_in_quotation_with_arg.pl
- tta/perl/t/results/quotation/only_comment_on_quotation_line.pl
- tta/perl/t/results/quotation/quotation_and_author.pl
- tta/perl/t/results/quotation/quotation_author_in_example.pl
- tta/perl/t/results/quotation/quotation_beginning_and_end_on_line.pl
- tta/perl/t/results/quotation/space_at_commands_end_quotation_line.pl
- tta/perl/t/results/quotation/standard_quotations.pl
- tta/perl/t/results/raw/beginning_and_end_on_line.pl
- tta/perl/t/results/raw/braces_in_tex.pl
- tta/perl/t/results/raw/comments_on_raw_block_line.pl
- tta/perl/t/results/raw/displaymath.pl
- tta/perl/t/results/raw/displaymath_not_closed.pl
- tta/perl/t/results/raw/empty_line_in_command_in_expanded_not_expanded.pl
- tta/perl/t/results/raw/inline_in_example.pl
- tta/perl/t/results/raw/inline_missing_first_arg.pl
- tta/perl/t/results/raw/inlinefmt.pl
- tta/perl/t/results/raw/inlinefmt_with_empty_line.pl
- tta/perl/t/results/raw/inlineraw.pl
- tta/perl/t/results/raw/inlineraw_not_closed.pl
- tta/perl/t/results/raw/inlineraw_with_empty_line.pl
- tta/perl/t/results/raw/lone_braces_in_html.pl
- tta/perl/t/results/raw/misc_raw.pl
- tta/perl/t/results/raw/misc_raw_comments.pl
- tta/perl/t/results/raw/nested_macros.pl
- tta/perl/t/results/raw/raw_commands_and_end_of_lines.pl
- tta/perl/t/results/raw/raw_epub.pl
- tta/perl/t/results/raw/raw_expanded_in_style.pl
- tta/perl/t/results/raw/raw_in_example.pl
- tta/perl/t/results/raw/raw_in_para.pl
- tta/perl/t/results/raw/raw_in_style.pl
- tta/perl/t/results/raw/raw_not_closed.pl
- tta/perl/t/results/raw/second_level_lone_braces_in_html.pl
- tta/perl/t/results/raw/second_level_lone_braces_in_html_not_expanded.pl
- tta/perl/t/results/raw/space_before_end.pl
- tta/perl/t/results/raw/spurious_arg_on_line.pl
- tta/perl/t/results/raw/tex_not_closed.pl
- tta/perl/t/results/raw/verbatim_and_verbatiminclude.pl
- tta/perl/t/results/raw/verbatim_in_brace_command.pl
- tta/perl/t/results/raw/verbatim_not_closed.pl
- tta/perl/t/results/regions/anchor_in_copying.pl
- tta/perl/t/results/regions/anchor_in_copying_in_footnote.pl
- tta/perl/t/results/regions/anchor_in_titlepage.pl
- tta/perl/t/results/regions/anchor_in_titlepage_titlepage.pl
- tta/perl/t/results/regions/copying_not_closed.pl
- tta/perl/t/results/regions/double_copying.pl
- tta/perl/t/results/regions/double_titlepage_not_closed.pl
- tta/perl/t/results/regions/format_in_titlepage.pl
- tta/perl/t/results/regions/format_in_titlepage_titlepage.pl
- tta/perl/t/results/regions/ref_in_copying.pl
- tta/perl/t/results/regions/ref_in_copying_insert_in_chapter.pl
- tta/perl/t/results/regions/today_in_copying.pl
- tta/perl/t/results/sectioning/a_comma_after_node.pl
- tta/perl/t/results/sectioning/anchor_zero.pl
- tta/perl/t/results/sectioning/at_commands_in_node.pl
- tta/perl/t/results/sectioning/automatic_menu_referencing_node.pl
- tta/perl/t/results/sectioning/automatic_menu_with_heading.pl
- tta/perl/t/results/sectioning/chapter_before_and_after_part.pl
- tta/perl/t/results/sectioning/chapter_before_part.pl
- tta/perl/t/results/sectioning/chapter_between_nodes.pl
- tta/perl/t/results/sectioning/chapter_between_nodes_texi2html.pl
- tta/perl/t/results/sectioning/chapter_between_nodes_with_appendix.pl
- tta/perl/t/results/sectioning/chapter_between_nodes_with_appendix_nomenu.pl
- tta/perl/t/results/sectioning/chapter_node_before_and_after_part.pl
- tta/perl/t/results/sectioning/character_and_spaces_in_node.pl
- tta/perl/t/results/sectioning/contents_and_parts.pl
- tta/perl/t/results/sectioning/contents_in_html_text.pl
- tta/perl/t/results/sectioning/contents_with_only_top_node.pl
- tta/perl/t/results/sectioning/double_node_anchor_float.pl
- tta/perl/t/results/sectioning/double_part.pl
- tta/perl/t/results/sectioning/double_recursive_self_section_node_reference.pl
- tta/perl/t/results/sectioning/double_recursive_self_section_node_reference_no_use_node.pl
- tta/perl/t/results/sectioning/double_recursive_self_section_reference.pl
- tta/perl/t/results/sectioning/double_top.pl
- tta/perl/t/results/sectioning/double_top_in_menu.pl
- tta/perl/t/results/sectioning/double_top_section.pl
- tta/perl/t/results/sectioning/email_in_node.pl
- tta/perl/t/results/sectioning/empty_anchor.pl
- tta/perl/t/results/sectioning/empty_node.pl
- tta/perl/t/results/sectioning/empty_nodes_with_commands.pl
- tta/perl/t/results/sectioning/empty_ref_arg.pl
- tta/perl/t/results/sectioning/empty_refs.pl
- tta/perl/t/results/sectioning/empty_section_in_chapter.pl
- tta/perl/t/results/sectioning/equivalent_labels.pl
- tta/perl/t/results/sectioning/equivalent_nodes.pl
- tta/perl/t/results/sectioning/equivalent_nodes_novalidate.pl
- tta/perl/t/results/sectioning/explicit_node_directions.pl
- tta/perl/t/results/sectioning/external_node_in_menu.pl
- tta/perl/t/results/sectioning/hole_in_sectioning.pl
- tta/perl/t/results/sectioning/in_menu_only_special_ascii_spaces_node.pl
- tta/perl/t/results/sectioning/in_menu_only_special_ascii_spaces_node_menu.pl
- tta/perl/t/results/sectioning/in_menu_only_special_spaces_node.pl
- tta/perl/t/results/sectioning/in_menu_only_special_spaces_node_menu.pl
- tta/perl/t/results/sectioning/in_menu_only_special_spaces_node_menu_transliterate.pl
- tta/perl/t/results/sectioning/lone_Top_node.pl
- tta/perl/t/results/sectioning/lone_contents.pl
- tta/perl/t/results/sectioning/loop_nodes.pl
- tta/perl/t/results/sectioning/menutextorder.pl
- tta/perl/t/results/sectioning/next_in_menu_is_below.pl
- tta/perl/t/results/sectioning/next_no_prev_to_node.pl
- tta/perl/t/results/sectioning/no_argument_and_contents.pl
- tta/perl/t/results/sectioning/no_menu.pl
- tta/perl/t/results/sectioning/node_empty_direction.pl
- tta/perl/t/results/sectioning/node_line_arguments.pl
- tta/perl/t/results/sectioning/node_nested_parentheses.pl
- tta/perl/t/results/sectioning/node_part_chapter_after_chapter.pl
- tta/perl/t/results/sectioning/node_part_chapter_after_top.pl
- tta/perl/t/results/sectioning/node_referenced_in_ref.pl
- tta/perl/t/results/sectioning/node_sectop_before_chapter_no_node.pl
- tta/perl/t/results/sectioning/node_sectop_before_lone_node_Top.pl
- tta/perl/t/results/sectioning/node_simple.pl
- tta/perl/t/results/sectioning/node_too_much_args.pl
- tta/perl/t/results/sectioning/node_up_direction_for_top_with_manual.pl
- tta/perl/t/results/sectioning/node_up_external_node.pl
- tta/perl/t/results/sectioning/nodename_parentheses.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_chapter_no_use_nodes_chapter.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_chapter_nodes.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_chapter_not_split.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_chapter_not_split_no_use_node_directions.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_chapter_sections.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_chapter_texi2html.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_chapter_texi2html_use_nodes_chapter.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_section_nodes.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_section_sections.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_section_texi2html_chapter.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_section_texi2html_use_nodes.pl
- tta/perl/t/results/sectioning/nodes_after_top_before_section_texi2html_use_nodes_chapter.pl
- tta/perl/t/results/sectioning/nodes_before_after_top.pl
- tta/perl/t/results/sectioning/nodes_before_top.pl
- tta/perl/t/results/sectioning/nodes_no_node_top_explicit_directions.pl
- tta/perl/t/results/sectioning/novalidate.pl
- tta/perl/t/results/sectioning/one_node_explicit_directions_anchor.pl
- tta/perl/t/results/sectioning/one_node_explicit_directions_anchor_no_use_node.pl
- tta/perl/t/results/sectioning/one_subsection.pl
- tta/perl/t/results/sectioning/one_subsection_and_node.pl
- tta/perl/t/results/sectioning/part_before_chapter.pl
- tta/perl/t/results/sectioning/part_before_section.pl
- tta/perl/t/results/sectioning/part_before_top.pl
- tta/perl/t/results/sectioning/part_chapter_after_top.pl
- tta/perl/t/results/sectioning/part_chapter_appendix.pl
- tta/perl/t/results/sectioning/part_node_after_top.pl
- tta/perl/t/results/sectioning/part_node_before_top.pl
- tta/perl/t/results/sectioning/part_node_chapter_after_top.pl
- tta/perl/t/results/sectioning/part_node_chapter_appendix.pl
- tta/perl/t/results/sectioning/part_node_chapter_node_appendix.pl
- tta/perl/t/results/sectioning/part_node_node_part_appendix.pl
- tta/perl/t/results/sectioning/part_node_part_appendix.pl
- tta/perl/t/results/sectioning/part_node_part_node_appendix.pl
- tta/perl/t/results/sectioning/part_section_part.pl
- tta/perl/t/results/sectioning/protected_node_parentheses.pl
- tta/perl/t/results/sectioning/recursive_self_section_reference.pl
- tta/perl/t/results/sectioning/ref_to_top.pl
- tta/perl/t/results/sectioning/ref_to_unknown_node.pl
- tta/perl/t/results/sectioning/reference_to_only_special_spaces_node.pl
- tta/perl/t/results/sectioning/reference_to_only_special_spaces_node_transliterate.pl
- tta/perl/t/results/sectioning/section_before_after_top_node.pl
- tta/perl/t/results/sectioning/section_before_after_top_node_last_node.pl
- tta/perl/t/results/sectioning/section_before_chapter.pl
- tta/perl/t/results/sectioning/section_before_part.pl
- tta/perl/t/results/sectioning/section_before_top.pl
- tta/perl/t/results/sectioning/section_before_top_no_node.pl
- tta/perl/t/results/sectioning/section_below_unnumbered.pl
- tta/perl/t/results/sectioning/section_below_unnumbered_no_top.pl
- tta/perl/t/results/sectioning/section_chapter_before_top.pl
- tta/perl/t/results/sectioning/section_chapter_before_top_nodes.pl
- tta/perl/t/results/sectioning/section_node_before_part.pl
- tta/perl/t/results/sectioning/sections.pl
- tta/perl/t/results/sectioning/semi_auto.pl
- tta/perl/t/results/sectioning/setfilename_on_top_and_after_node.pl
- tta/perl/t/results/sectioning/space_in_node.pl
- tta/perl/t/results/sectioning/split_for_format_not_split.pl
- tta/perl/t/results/sectioning/top_no_argument_and_content.pl
- tta/perl/t/results/sectioning/top_no_argument_and_node.pl
- tta/perl/t/results/sectioning/top_no_argument_and_top_node.pl
- tta/perl/t/results/sectioning/top_node_no_menu_direction.pl
- tta/perl/t/results/sectioning/top_node_part_top.pl
- tta/perl/t/results/sectioning/top_part_chapter.pl
- tta/perl/t/results/sectioning/top_without_node_nodes.pl
- tta/perl/t/results/sectioning/top_without_node_sections.pl
- tta/perl/t/results/sectioning/top_without_node_texi2html_no_use_nodes.pl
- tta/perl/t/results/sectioning/transliterated_split_equivalent_nodes.pl
- tta/perl/t/results/sectioning/two_nodes_at_the_end.pl
- tta/perl/t/results/sectioning/two_nodes_at_the_end_nodes.pl
- tta/perl/t/results/sectioning/two_nodes_at_the_end_texi2html.pl
- tta/perl/t/results/sectioning/two_nodes_between_chapters.pl
- tta/perl/t/results/sectioning/two_nodes_between_chapters_nodes.pl
- tta/perl/t/results/sectioning/two_nodes_between_chapters_texi2html.pl
- tta/perl/t/results/sectioning/two_unnumbered_no_argument.pl
- tta/perl/t/results/sectioning/unknown_node_direction_novalidate.pl
- tta/perl/t/results/sectioning/unknown_node_in_menu.pl
- tta/perl/t/results/sectioning/unknown_node_in_menu_novalidate.pl
- tta/perl/t/results/sectioning/unnumbered_before_node_top_top.pl
- tta/perl/t/results/sectioning/unnumbered_before_top.pl
- tta/perl/t/results/sectioning/unnumbered_before_top_node.pl
- tta/perl/t/results/sectioning/unnumbered_no_argument.pl
- tta/perl/t/results/sectioning/unnumbered_top_without_node_nodes.pl
- tta/perl/t/results/sectioning/unnumbered_top_without_node_sections.pl
- tta/perl/t/results/transformations/index_entries_relate_to_item_no_transformation.pl
- tta/perl/t/results/transformations/index_entries_relate_to_item_transformation.pl
- tta/perl/t/results/transformations/index_entry_before_item_with_subentry.pl
- tta/perl/t/results/transformations/insert_nodes_for_sectioning_commands.pl
- tta/perl/t/results/transformations/master_menu_fr.pl
- tta/perl/t/results/transformations/protect_colon_source_mark.pl
- tta/perl/t/results/transformations/protect_comma_source_mark.pl
- tta/perl/t/results/transformations/protect_first_parenthesis_after_parenthesis_source_mark.pl
- tta/perl/t/results/transformations/protect_first_parenthesis_source_mark.pl
- tta/perl/t/results/transformations/protect_hashchar_at_line_beginning_source_mark.pl
- tta/perl/t/results/transformations/protect_node_after_label_source_mark_in_protected.pl
- tta/perl/t/results/transformations/regenerate_master_menu_language_at_beginning_and_end.pl
- tta/perl/t/results/transformations/regenerate_master_menu_language_at_beginning_end_set_lang.pl
- tta/perl/t/results/transformations/regenerate_master_menu_no_need_for_master_menu.pl
- tta/perl/t/results/transformations/regenerate_master_menu_with_menu_comment.pl
- tta/perl/t/results/transformations/test_fill_gaps_in_sectioning.pl
- tta/perl/t/results/transformations/test_fill_gaps_in_sectioning_insert_nodes.pl
- tta/perl/t/results/transformations/test_insert_nodes_nodedescription.pl
- tta/perl/t/results/transformations/test_insert_nodes_reallocated_nodedescriptionblock.pl
- tta/perl/t/results/transformations/test_insert_nodes_with_empty_headings.pl
- tta/perl/t/results/transformations/test_new_node_empty_ref.pl
- tta/perl/t/results/transformations/various_added_nodes_and_refs.pl
- tta/perl/t/results/value/bad_syntax.pl
- tta/perl/t/results/value/begin_like_comment_on_set_line.pl
- tta/perl/t/results/value/clear_no_end_of_line.pl
- tta/perl/t/results/value/closing_brace_in_value_in_ignored_inline.pl
- tta/perl/t/results/value/comment_on_clear_line.pl
- tta/perl/t/results/value/comment_on_set_line.pl
- tta/perl/t/results/value/empty_set.pl
- tta/perl/t/results/value/empty_value_in_line.pl
- tta/perl/t/results/value/ignored_value_definition.pl
- tta/perl/t/results/value/not_only_characters.pl
- tta/perl/t/results/value/recursive_expansion_in_set.pl
- tta/perl/t/results/value/set_flag_command_equivalent.pl
- tta/perl/t/results/value/set_form_feed.pl
- tta/perl/t/results/value/set_in_item_missing_line.pl
- tta/perl/t/results/value/set_no_end_of_line.pl
- tta/perl/t/results/value/set_on_item_line.pl
- tta/perl/t/results/value/simple.pl
- tta/perl/t/results/value/spaces_before_value.pl
- tta/perl/t/results/value/unknown_value_after_spaces.pl
- tta/perl/t/results/value/value_after_accent.pl
- tta/perl/t/results/value/value_after_brace_command.pl
- tta/perl/t/results/value/value_in_index_commands.pl
- tta/perl/t/results/value/value_in_invalid_documentencoding.pl
- tta/perl/t/results/value/value_in_misc_commands.pl
- tta/perl/t/results/value/value_in_node.pl
- tta/perl/t/results/value/value_node_directions.pl
- tta/perl/t/results/value/value_zero.pl
- tta/perl/t/results/value_and_macro/comma_value_in_macro_arg.pl
- tta/perl/t/results/value_and_macro/macro_in_value.pl
- tta/perl/t/results/value_and_macro/value_in_macro_body.pl
- tta/perl/t/results/value_and_macro/value_in_macro_formal_arg.pl
- tta/perl/t/results/verb/comments.pl
- tta/perl/t/results/verb/end_of_line.pl
- tta/perl/t/results/verb/multiline.pl
- tta/perl/t/results/verb/nested.pl
- tta/perl/t/results/verb/simple.pl
- tta/perl/t/results/verb/verb_and_char_end_of_line_not_closed.pl
- tta/perl/t/results/verb/verb_at_end_of_line_not_closed.pl
- tta/perl/t/results/verb/verb_not_closed.pl
- tta/perl/t/results/verb/verb_not_closed_with_char.pl
- tta/perl/t/results/xml_tests/brace_commands_spaces_end_of_lines.pl
- tta/perl/t/results/xml_tests/commands_and_spaces.pl
- tta/perl/t/results/xml_tests/comments_end_lines.pl
- tta/perl/t/results/xml_tests/comments_on_block_command_lines.pl
- tta/perl/t/results/xml_tests/comments_on_misc_command_line.pl
- tta/perl/t/results/xml_tests/image_inline_or_not.pl
- tta/perl/t/results/xml_tests/inline_commands.pl
- tta/perl/t/results/xml_tests/inlineifset_empty_second_arg.pl
- tta/perl/t/results/xml_tests/lone_bye.pl
- tta/perl/t/results/xml_tests/macro_and_args.pl
- tta/perl/t/results/xml_tests/raw.pl
- tta/perl/t/results/xml_tests/raw_and_comments.pl
- tta/perl/t/results/xml_tests/sectioning_test_ref.pl
- tta/perl/t/results/xml_tests/spaces_info_lost.pl
- tta/perl/t/results/xml_tests/top_node_and_bye.pl
- tta/perl/t/results/xml_tests/top_node_no_section.pl
- tta/perl/t/results/xtable/accent_on_table_line.pl
- tta/perl/t/results/xtable/block_commands_in_table.pl
- tta/perl/t/results/xtable/comment_and_itemx_before_item.pl
- tta/perl/t/results/xtable/definfoenclose_on_table_line.pl
- tta/perl/t/results/xtable/empty_item_itemx.pl
- tta/perl/t/results/xtable/empty_table.pl
- tta/perl/t/results/xtable/headitem_in_table.pl
- tta/perl/t/results/xtable/index_command_before_end_table.pl
- tta/perl/t/results/xtable/inter_item_commands_in_table.pl
- tta/perl/t/results/xtable/inter_item_commands_in_table_in_example.pl
- tta/perl/t/results/xtable/invalid_command_and_brace_in_table.pl
- tta/perl/t/results/xtable/item_index_transformation.pl
- tta/perl/t/results/xtable/itemx_before_item.pl
- tta/perl/t/results/xtable/lone_end_table.pl
- tta/perl/t/results/xtable/long_item.pl
- tta/perl/t/results/xtable/no_arg_brace_command_on_table_line.pl
- tta/perl/t/results/xtable/no_argument_for_table.pl
- tta/perl/t/results/xtable/table_nested.pl
- tta/perl/t/results/xtable/text_between_item_itemx.pl
- tta/perl/t/results/xtable/title_and_itemx_before_item.pl
- tta/perl/t/test_utils.pl
Change #274095
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sun 05 Jul 2026 20:05:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision f3786a242cf714794ef4ef73ecc5bfd84bf7d0ec Comments
Converter indices sort strings comparison in tests * tta/C/main/manipulate_indices.c (print_indices_sort_strings), tta/perl/Texinfo/Indices.pm (print_indices_sort_strings): return NULL/undef instead of an empty string. * tta/perl/t/test_utils.pl (test): compare converter indices sort strings with reference in tests.
Changed files
- ChangeLog
- tta/C/main/manipulate_indices.c
- tta/perl/Texinfo/Indices.pm
- tta/perl/t/results/alias/alias_of_added_index.pl
- tta/perl/t/results/alias/alias_of_added_index_before_added_index.pl
- tta/perl/t/results/converters_tests/at_commands_in_raw.pl
- tta/perl/t/results/converters_tests/complex_nestings.pl
- tta/perl/t/results/converters_tests/conversion_with_undef_customization.pl
- tta/perl/t/results/converters_tests/definition_commands.pl
- tta/perl/t/results/converters_tests/form_feeds.pl
- tta/perl/t/results/converters_tests/frenchspacing_and_code.pl
- tta/perl/t/results/converters_tests/index_entry_in_preformatted.pl
- tta/perl/t/results/converters_tests/indices_in_begin_tables_lists.pl
- tta/perl/t/results/converters_tests/indices_in_begin_tables_lists_entries_after_item.pl
- tta/perl/t/results/converters_tests/printindex_merged_indices_code_style.pl
- tta/perl/t/results/converters_tests/references_to_top_no_top_output.pl
- tta/perl/t/results/converters_tests/sections_and_printindex.pl
- tta/perl/t/results/converters_tests/test_deftypefnnewline.pl
- tta/perl/t/results/converters_tests/things_before_setfilename.pl
- tta/perl/t/results/converters_tests/things_before_setfilename_no_element.pl
- tta/perl/t/results/converters_tests/various_vtable_command_as_argument.pl
- tta/perl/t/results/coverage/commands.pl
- tta/perl/t/results/coverage/def.pl
- tta/perl/t/results/coverage/multitable.pl
- tta/perl/t/results/coverage/preformatted.pl
- tta/perl/t/results/coverage/punctuation_in_line_commands.pl
- tta/perl/t/results/coverage/table.pl
- tta/perl/t/results/coverage_braces/contain_plain_text_nestings.pl
- tta/perl/t/results/coverage_braces/heading_in_footnote.pl
- tta/perl/t/results/coverage_braces/seeentry_no_braces.pl
- tta/perl/t/results/def/all_commands.pl
- tta/perl/t/results/def/all_commands_delimiters.pl
- tta/perl/t/results/def/all_commands_delimiters_printindex.pl
- tta/perl/t/results/def/all_commands_printindex.pl
- tta/perl/t/results/def/ampchar.pl
- tta/perl/t/results/def/bracketed_arg_no_space.pl
- tta/perl/t/results/def/code_in_def.pl
- tta/perl/t/results/def/comment_index_before_defline.pl
- tta/perl/t/results/def/def_groupings_args.pl
- tta/perl/t/results/def/defx_after_comment.pl
- tta/perl/t/results/def/defx_after_comment_in_example.pl
- tta/perl/t/results/def/defx_after_empty_line.pl
- tta/perl/t/results/def/defx_after_empty_line_in_example.pl
- tta/perl/t/results/def/defx_in_example.pl
- tta/perl/t/results/def/empty_def_command.pl
- tta/perl/t/results/def/end_of_lines_protected.pl
- tta/perl/t/results/def/end_of_lines_protected_in_footnote.pl
- tta/perl/t/results/def/end_of_lines_protected_non_ascii.pl
- tta/perl/t/results/def/inter_item_commands_in_def.pl
- tta/perl/t/results/def/inter_item_commands_in_def_in_example.pl
- tta/perl/t/results/def/leading_space_in_def_arg.pl
- tta/perl/t/results/def/omit_def_space.pl
- tta/perl/t/results/def/protected_brace.pl
- tta/perl/t/results/def/ref_in_def.pl
- tta/perl/t/results/def/space_in_def_for_index.pl
- tta/perl/t/results/float/cindex_in_caption.pl
- tta/perl/t/results/float/complex_float.pl
- tta/perl/t/results/float/float_copying.pl
- tta/perl/t/results/formats_encodings/char_latin1_latin1_in_refs.pl
- tta/perl/t/results/formats_encodings/char_latin1_latin1_in_refs_output_encoding_latin1.pl
- tta/perl/t/results/formats_encodings/char_latin2_latin2_in_refs.pl
- tta/perl/t/results/formats_encodings/char_us_ascii_latin1_in_refs.pl
- tta/perl/t/results/formats_encodings/char_us_ascii_latin1_in_refs_no_translit_files.pl
- tta/perl/t/results/formats_encodings/char_utf8_latin1_in_refs.pl
- tta/perl/t/results/formats_encodings/multiple_include_encodings.pl
- tta/perl/t/results/formats_encodings/sample_utf8.pl
- tta/perl/t/results/heading/heading_in_copying.pl
- tta/perl/t/results/html_tests/U_in_index.pl
- tta/perl/t/results/html_tests/anchor_on_vtable_item.pl
- tta/perl/t/results/html_tests/deftypefnnewline_for_copying_after.pl
- tta/perl/t/results/html_tests/deftypefnnewline_for_copying_before.pl
- tta/perl/t/results/html_tests/float_copying.pl
- tta/perl/t/results/html_tests/index_and_node_same_name.pl
- tta/perl/t/results/html_tests/index_below.pl
- tta/perl/t/results/html_tests/letter_command_in_index.pl
- tta/perl/t/results/indices/def_syn_indices.pl
- tta/perl/t/results/indices/default_cp_index_and_one_letter_syncodeindex.pl
- tta/perl/t/results/indices/double_index_entry.pl
- tta/perl/t/results/indices/double_seeentry_seealso.pl
- tta/perl/t/results/indices/double_syncodeindex.pl
- tta/perl/t/results/indices/empty_string_index_entry.pl
- tta/perl/t/results/indices/encoding_index_ascii.pl
- tta/perl/t/results/indices/encoding_index_ascii_enable_encoding.pl
- tta/perl/t/results/indices/encoding_index_latin1.pl
- tta/perl/t/results/indices/encoding_index_latin1_enable_encoding.pl
- tta/perl/t/results/indices/encoding_index_utf8.pl
- tta/perl/t/results/indices/encoding_index_utf8_enable_encoding.pl
- tta/perl/t/results/indices/encoding_index_utf8_no_use_unicode.pl
- tta/perl/t/results/indices/explicit_sort_key.pl
- tta/perl/t/results/indices/ftable_vtable.pl
- tta/perl/t/results/indices/ignored_sort_char_empty_entries.pl
- tta/perl/t/results/indices/image_lines_count.pl
- tta/perl/t/results/indices/image_text_lines_count.pl
- tta/perl/t/results/indices/index_and_node_same_name.pl
- tta/perl/t/results/indices/index_entries_before_nodes.pl
- tta/perl/t/results/indices/index_entries_locations.pl
- tta/perl/t/results/indices/index_entry_before_first_node.pl
- tta/perl/t/results/indices/index_entry_before_node.pl
- tta/perl/t/results/indices/index_entry_in_footnote.pl
- tta/perl/t/results/indices/index_entry_in_footnote_different_node_end.pl
- tta/perl/t/results/indices/index_entry_in_footnote_sections.pl
- tta/perl/t/results/indices/index_entry_in_footnote_sections_separate.pl
- tta/perl/t/results/indices/index_entry_in_footnote_separate.pl
- tta/perl/t/results/indices/index_no_node.pl
- tta/perl/t/results/indices/index_no_node_no_top.pl
- tta/perl/t/results/indices/index_no_node_no_top_no_node.pl
- tta/perl/t/results/indices/index_nodes.pl
- tta/perl/t/results/indices/index_nodes_no_split_no_use_nodes.pl
- tta/perl/t/results/indices/index_special_region.pl
- tta/perl/t/results/indices/index_special_region_no_insertcopying.pl
- tta/perl/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes.pl
- tta/perl/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes.pl
- tta/perl/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default.pl
- tta/perl/t/results/indices/index_special_region_no_titlepage_no_nodes.pl
- tta/perl/t/results/indices/index_special_region_titlepage_no_nodes.pl
- tta/perl/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default.pl
- tta/perl/t/results/indices/index_split.pl
- tta/perl/t/results/indices/index_split_split_chapter_no_nodes.pl
- tta/perl/t/results/indices/index_table.pl
- tta/perl/t/results/indices/index_table_chapter_no_node.pl
- tta/perl/t/results/indices/multiple_index_text_sortas_seeentry_seealso.pl
- tta/perl/t/results/indices/nodes_before_top.pl
- tta/perl/t/results/indices/nodes_before_top_and_sections_chapter.pl
- tta/perl/t/results/indices/nodes_before_top_and_sections_chapter_no_node.pl
- tta/perl/t/results/indices/nodes_before_top_and_sections_unsplit_no_nodes.pl
- tta/perl/t/results/indices/nodes_before_top_split_chapter.pl
- tta/perl/t/results/indices/nodes_before_top_split_chapter_no_nodes.pl
- tta/perl/t/results/indices/printindex_between_node_section.pl
- tta/perl/t/results/indices/printindex_between_part_chapter.pl
- tta/perl/t/results/indices/printindex_index_entry_in_copying.pl
- tta/perl/t/results/indices/printindex_index_entry_in_copying_in_footnote.pl
- tta/perl/t/results/indices/printindex_index_entry_in_copying_no_insertcopying.pl
- tta/perl/t/results/indices/printindex_with_space_before.pl
- tta/perl/t/results/indices/same_index_entry_merged_indices.pl
- tta/perl/t/results/indices/same_only_seealso_seeentry.pl
- tta/perl/t/results/indices/same_seealso_seeentry.pl
- tta/perl/t/results/indices/seealso_duplicate.pl
- tta/perl/t/results/indices/seeentry.pl
- tta/perl/t/results/indices/sorted_subentries.pl
- tta/perl/t/results/indices/sorting_of_symbols.pl
- tta/perl/t/results/indices/split_chapter_index.pl
- tta/perl/t/results/indices/subentries.pl
- tta/perl/t/results/indices/subentries_and_comments.pl
- tta/perl/t/results/indices/subentry_and_sortas.pl
- tta/perl/t/results/indices/subentry_and_sortas_spaces.pl
- tta/perl/t/results/indices/syncode_index_print_both.pl
- tta/perl/t/results/indices/syncodeindex_to_plain.pl
- tta/perl/t/results/indices/transparent_sort_chars.pl
- tta/perl/t/results/indices/w_lines_count.pl
- tta/perl/t/results/info_tests/before_node_and_section.pl
- tta/perl/t/results/info_tests/colon_in_index_entry.pl
- tta/perl/t/results/info_tests/colons_in_index_entries_and_node.pl
- tta/perl/t/results/info_tests/colons_in_index_entries_and_node_no_quoting.pl
- tta/perl/t/results/info_tests/def_in_copying.pl
- tta/perl/t/results/info_tests/end_of_line_command_in_node_lines.pl
- tta/perl/t/results/info_tests/index_entry_at_end_node.pl
- tta/perl/t/results/info_tests/multitable_anchor_and_index_entry.pl
- tta/perl/t/results/info_tests/nested_multitable_anchor_index.pl
- tta/perl/t/results/info_tests/one_node_counted_elements.pl
- tta/perl/t/results/info_tests/test_index.pl
- tta/perl/t/results/init_files_tests/customize_definition_index_translations.pl
- tta/perl/t/results/init_files_tests/directions_buttons.pl
- tta/perl/t/results/init_files_tests/directions_buttons_buttons.pl
- tta/perl/t/results/init_files_tests/documentation_examples.pl
- tta/perl/t/results/init_files_tests/documentation_examples_texi2html.pl
- tta/perl/t/results/init_files_tests/printindex_set_direction.pl
- tta/perl/t/results/init_files_tests/translation_in_parser_in_translation.pl
- tta/perl/t/results/invalid_nestings/raw_block_on_line.pl
- tta/perl/t/results/invalid_nestings/section_on_def_line.pl
- tta/perl/t/results/invalid_nestings/section_on_defx_line.pl
- tta/perl/t/results/itemize/inter_item_commands_in_enumerate.pl
- tta/perl/t/results/itemize/inter_item_commands_in_itemize.pl
- tta/perl/t/results/languages/documentlanguage.pl
- tta/perl/t/results/languages/documentlanguage_option.pl
- tta/perl/t/results/languages/documentlanguage_selection_accented_region.pl
- tta/perl/t/results/languages/documentlanguage_selection_region_unicode.pl
- tta/perl/t/results/languages/documentlanguage_unknown.pl
- tta/perl/t/results/languages/documentlanguagevariant_conversion.pl
- tta/perl/t/results/languages/documentlanguagevariant_selection.pl
- tta/perl/t/results/languages/documentscript_before_documentlanguage.pl
- tta/perl/t/results/languages/documentscript_conversion.pl
- tta/perl/t/results/languages/documentscript_selection.pl
- tta/perl/t/results/languages/documentscript_variant_reset_in_preamble.pl
- tta/perl/t/results/languages/invalid_documentlanguage.pl
- tta/perl/t/results/languages/multiple_documentlanguage.pl
- tta/perl/t/results/languages/multiple_in_preamble.pl
- tta/perl/t/results/languages/multiple_in_preamble_before_node.pl
- tta/perl/t/results/languages/multiple_lang_chapters.pl
- tta/perl/t/results/languages/multiple_lang_chapters_texi2html.pl
- tta/perl/t/results/languages/simple_documentlanguage.pl
- tta/perl/t/results/languages/unknown_documentscript_selection.pl
- tta/perl/t/results/languages/unknown_region.pl
- tta/perl/t/results/layout/no_monolithic.pl
- tta/perl/t/results/layout/no_monolithic_only_toc_out.pl
- tta/perl/t/results/macro/macro_alias_definfoenclose_defindex.pl
- tta/perl/t/results/menu/commands_in_nodedescriptionblock.pl
- tta/perl/t/results/misc_commands/comment_space_command_on_line.pl
- tta/perl/t/results/moresectioning/no_element.pl
- tta/perl/t/results/moresectioning/placed_things_before_element.pl
- tta/perl/t/results/moresectioning/placed_things_before_element_no_use_node.pl
- tta/perl/t/results/moresectioning/placed_things_before_node.pl
- tta/perl/t/results/multitable/inter_item_commands_in_multitable.pl
- tta/perl/t/results/paragraph/indent_before_macro_definition_and_other.pl
- tta/perl/t/results/plaintext_tests/at_commands_glued_in_example.pl
- tta/perl/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl
- tta/perl/t/results/preformatted/def_in_example.pl
- tta/perl/t/results/preformatted/exampleindent_set_nestings.pl
- tta/perl/t/results/preformatted/exampleindent_zero_nestings.pl
- tta/perl/t/results/transformations/index_entries_relate_to_item_no_transformation.pl
- tta/perl/t/results/transformations/index_entries_relate_to_item_transformation.pl
- tta/perl/t/results/xtable/block_commands_in_table.pl
- tta/perl/t/results/xtable/empty_item_itemx.pl
- tta/perl/t/results/xtable/index_command_before_end_table.pl
- tta/perl/t/results/xtable/inter_item_commands_in_table.pl
- tta/perl/t/results/xtable/inter_item_commands_in_table_in_example.pl
- tta/perl/t/results/xtable/item_index_transformation.pl
- tta/perl/t/results/xtable/table_nested.pl
- tta/perl/t/test_utils.pl
Change #274103
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 05 Jul 2026 22:06:00 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 177ca1ade229b97a387afdca35a1c8a4ea268515 Comments
* tta/C/convert/plaintext_paragraph.h (PARA_CONF_VARIABLES_LIST): Add double_width_no_break, for completeness.
Changed files
- ChangeLog
- tta/C/convert/plaintext_paragraph.h
Change #274104
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 05 Jul 2026 22:06:00 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 5d6dcdd507ecd7ee1bb49fc6a51692ccbb217326 Comments
* tta/perl/Texinfo/Convert/Plaintext.pm (new_formatter) <flush commands>: Set 'ignore_columns' and 'keep_end_lines' on container configuration rather than calling set_space_protection.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #274120
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 05 Jul 2026 23:20:14 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c53a643d1f22adf794bf05a1fe08f7889ca75688 Comments
* tta/perl/Texinfo/Convert/Plaintext.pm (new_formatter): Split $conf parameter into two parameters, one for paragraph configuration only.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #274121
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Mon 06 Jul 2026 00:22:44 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c47efb04ab9487fed67fcb99e217a519e89938ee Comments
* tta/perl/t/test_utils.pl (test): fix variable name. Report from Gavin.
Changed files
- ChangeLog
- tta/perl/t/test_utils.pl
Change #274184
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 06 Jul 2026 13:56:02 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 57562b2c83e97f2341258b90f51040e2335b0f3a Comments
Paragraph conf * tta/perl/XSTexinfo/ParagraphXS.xs (para_new): Warn if there is a key in the paragraph configuration hash that is not a recognized configuration variable. * tta/perl/Texinfo/Convert/Plaintext.pm (process_printindex): Use 'indent_length' instead of 'indent' in call to new_formatter. * tta/perl/Texinfo/Convert/Info.pm (format_ref): Fix call to convert_line_new_context.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
- tta/perl/XSTexinfo/ParagraphXS.xs
Change #274217
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 06 Jul 2026 20:43:33 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision a441973bbd8d8d17c439bd22482a959fcc82cc81 Comments
* tta/C/convert/plaintext_paragraph.h (PARA_CONF_VARIABLES_LIST): Remove word_counter and lines_counter as these are not set from outside the module. * tta/C/convert/plaintext_paragraph.c (struct PARAGRAPH): Reorder struct members.
Changed files
- ChangeLog
- tta/C/convert/plaintext_paragraph.c
- tta/C/convert/plaintext_paragraph.h
Change #274223
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Mon 06 Jul 2026 22:05:10 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision b252295b90e02dc6f6d1ae03c257c4cba8bf0529 Comments
* tta/perl/t/z_misc/accents.t; add comments, remove useless FIXME..
Changed files
- ChangeLog
- tta/perl/XSTexinfo/parser_document/ParserXS.xs
- tta/perl/t/z_misc/accents.t
Change #274224
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Mon 06 Jul 2026 22:05:10 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 747be0b32ad12645aa858c20922b7223c4a59117 Comments
* tta/C/main/document.c (document_sorted_indices_by_index) (document_sorted_indices_by_letter): return indices sorted by index or by letter instead of the collation information. Update callers.
Changed files
- ChangeLog
- tta/C/api_for_swig/swig_interface.c
- tta/C/main/document.c
- tta/C/main/document.h
Change #274225
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Mon 06 Jul 2026 22:05:10 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 8ca9c00ad3e7a299e8e814f76f67707e18bdb673 Comments
* tta/C/main/manipulate_indices.c (print_indices_sort_strings): inline setup_indices_entries_sort_strings in print_indices_sort_strings and remove. More comments. * tta/C/main/manipulate_indices.c (INDEX_ENTRIES_SORT_STRINGS) (find_indices_entries_sort_strings_index, print_indices_sort_strings): replace index field in INDEX_ENTRIES_SORT_STRINGS by index_name, as it is all that is accessed from the index. * tta/perl/t/z_misc/test_sort.t: more comments.
Changed files
- ChangeLog
- tta/C/main/manipulate_indices.c
- tta/perl/t/z_misc/test_sort.t
Change #274226
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Mon 06 Jul 2026 22:06:39 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 9b4e04daed500eab197f0fa845f1077bc465a1ae Comments
Remove useless line in ChangeLog
Changed files
- ChangeLog
Change #274235
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 07 Jul 2026 02:25:51 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 4c4d60e41f7ddc63cdd5374abefdc0dbfddf512c Comments
Reduce use of set_space_protection * tta/perl/XSTexinfo/ParagraphXS.xs, tta/perl/Texinfo/Convert/ParagraphNonXS.pm (set_frenchspacing, set_double_width_no_break): New functions. * tta/perl/Texinfo/Convert/Paragraph.pm: Add these to @EXPORT_OK. * tta/perl/Texinfo/Convert/Plaintext.pm (_open_code, _convert), * tta/perl/Texinfo/Convert/Info.pm (_format_ref): Use these instead of set_space_protection, as it's easier to understand without remembering what all the arguments to set_space_protection mean.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Convert/Paragraph.pm
- tta/perl/Texinfo/Convert/ParagraphNonXS.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
- tta/perl/XSTexinfo/ParagraphXS.xs
Change #274236
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 07 Jul 2026 03:27:47 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 6ff4fa1dfe5bf813bff5608ca152670542562289 Comments
Remove parameters from set_space_protection * tta/perl/Texinfo/Convert/ParagraphNonXS.pm, (set_space_protection), * tta/C/convert/plaintext_paragraph.c (para_set_space_protection), * tta/perl/XSTexinfo/ParagraphXS.xs (para_set_space_protection): Remove all optional parameters. * tta/perl/t/z_misc/paragraph.t: update use of set_space_protection.
Changed files
- ChangeLog
- tta/C/convert/plaintext_paragraph.c
- tta/C/convert/plaintext_paragraph.h
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Convert/ParagraphNonXS.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
- tta/perl/XSTexinfo/ParagraphXS.xs
- tta/perl/t/z_misc/paragraph.t
Change #274254
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 07 Jul 2026 12:40:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision da1c827bf46bd06aa349c95a368915ff594e8401 Comments
* tta/C/convert/convert_to_plaintext.c (convert_to_plaintext_internal): Call element_builtin_cmd and remove TODO comment. From Patrice.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274294
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Tue 07 Jul 2026 21:00:20 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 1f24ebbd18b7ebe7dd2d3fbf1524f72a523a3199 Comments
* tta/C/parsetexi/commands.h (parsed_command_data): rename command_data as parsed_command_data. Update callers.
Changed files
- ChangeLog
- tta/C/parsetexi/close.c
- tta/C/parsetexi/commands.c
- tta/C/parsetexi/commands.h
- tta/C/parsetexi/context_stack.c
- tta/C/parsetexi/def.c
- tta/C/parsetexi/end_line.c
- tta/C/parsetexi/handle_commands.c
- tta/C/parsetexi/macro.c
- tta/C/parsetexi/parser.c
- tta/C/parsetexi/separator.c
Change #274295
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Tue 07 Jul 2026 21:43:36 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision b40802da4c7903180b5d9bccf630fc8a2323ef57 Comments
* tta/C/main/builtin_commands.h, tta/C/main/command_data.awk (END): rename builtin_command_data as command_data. Update users.
Changed files
- ChangeLog
- tta/C/api_for_swig/swig_interface.c
- tta/C/convert/build_html_perl_state.c
- tta/C/convert/convert_html.c
- tta/C/convert/convert_indices.c
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/converter.c
- tta/C/convert/format_html.c
- tta/C/convert/html_conversion_state.c
- tta/C/convert/html_prepare_converter.c
- tta/C/main/builtin_commands.c
- tta/C/main/builtin_commands.h
- tta/C/main/command_data.awk
- tta/C/main/command_data.c
- tta/C/main/convert_to_texinfo.c
- tta/C/main/convert_to_text.c
- tta/C/main/convert_utils.c
- tta/C/main/get_perl_info.c
- tta/C/main/manipulate_indices.c
- tta/C/main/manipulate_tree.c
- tta/C/main/node_name_normalization.c
- tta/C/main/output_unit.c
- tta/C/main/structure_list.c
- tta/C/main/utils.c
- tta/C/parsetexi/commands.h
- tta/C/parsetexi/end_line.c
- tta/C/structuring_transfo/transformations.c
- tta/C/texi2any.c
- tta/perl/XSTexinfo/convert/ConvertHTMLXS.xs
- tta/perl/XSTexinfo/convert/get_html_perl_info.c
Change #274296
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 07 Jul 2026 22:17:10 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c67118f418759a58df0c463c867d3b1109c6de47 Comments
* tta/C/convert/convert_to_plaintext.c: Increase use of stack functions slightly.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274347
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 08 Jul 2026 15:06:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision bd7dc577967050924b7d1447b8452b0bcf8c29d2 Comments
Simplify new_formatter interface * tta/perl/Texinfo/Convert/Plaintext.pm (_convert) <list of floats>: Do not pass "max" configuration value to 'new_formatter' as 'new_formatter' retrieves this value itself. This allows simplifying the interface of 'new_formatter' as now the only configuration values it takes are 'indent_length' and 'indent_length_next'.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #274428
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 09 Jul 2026 23:16:40 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision a9440d01f13e47180c00038d59020d9d2bfb0479 Comments
Simplify new_formatter interface * tta/perl/Texinfo/Convert/Plaintext.pm (new_formatter): Take 'indent_length' and 'indent_length_next' as subroutine parameters rather than hash values. This should make this function easier to replicate in a C reimplementation. (convert_line, convert_line_new_context): Likewise.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #274438
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 10 Jul 2026 00:15:35 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 3a8665f72aebe87b6428ce306f5d9445f52b6103 Comments
new_formatter for C plaintext converter * tta/C/convert/convert_to_plaintext.c (new_formatter): Set appropriate paragraph formatting settings. (This produced a big improvement in the output at this stage of development.)
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274439
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 10 Jul 2026 00:42:09 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 0117c4e5943252c3fb6728a7b6e356d4894ab1ac Comments
* tta/C/convert/convert_to_plaintext.c (convert_to_plaintext_internal): Get paragraph indent from self->conf.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274479
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 10 Jul 2026 12:42:54 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 1eb785fb094e387c90119f4c5a0bc51fc61f2cb6 Comments
Continue C plaintext converter * tta/C/convert/convert_to_plaintext.c (convert_to_plaintext_internal): Don't get paragraph indent from self->conf until we work out how to do this. Fill out more skeleton code.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274486
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 10 Jul 2026 15:54:03 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 8928ea70024bed248308a270ede3bc94b2b9934f Comments
Continue C plaintext converter * tta/C/convert/convert_to_plaintext.c (convert_to_plaintext_internal): Get paragraphindent conf value as string with strtoul. From Patrice.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274507
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 10 Jul 2026 23:32:48 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 9acccbe3c5ff4509afefe3b9b3e1df9f6562be0d Comments
Attempt at comments in data file cross-referencing other files * tta/data/converters_defaults.txt: add comment at top of file cross-referencing other related files. * tta/maintain/regenerate_perl_options_info.pl, * tta/maintain/regenerate_C_options_info.pl: Reference converter_defaults.txt and relevant Makefile.am files. Correct file names in comments at tops of files. * tta/perl/Makefile.am: Add comment about keeping a file name in sync with a comment in a another file. The thinking behind these comments is that if someone finds one of these files is relevant to converter options values, they should be easily able to find how they are set and used across the rest of the code base. They should also be able to easily know what comments to update in case of any changes to prevent out-of-date information.
Changed files
- ChangeLog
- tta/data/converters_defaults.txt
- tta/maintain/regenerate_C_options_info.pl
- tta/maintain/regenerate_perl_options_info.pl
- tta/perl/Makefile.am
Change #274508
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 11 Jul 2026 00:03:54 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c1258973f95f13ae808bc80655b4537454081036 Comments
* README-hacking: remove missed self-destructing note for post 7.3 release, which should have been removed after DUMP_TREE change on 2026-04-01.
Changed files
- ChangeLog
- README-hacking
Change #274556
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 12 Jul 2026 00:11:51 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c7baf174e04a8bca0e05b59e1379e861d860a6ef Comments
Fix index reference to node with : in its name * info/scan.c (scan_reference_label): Include DEL byte in argument to strcspn. This reverses change on 2024-12-30. Fix from ThomB <thomb@pm.me>.
Changed files
- ChangeLog
- info/scan.c
Change #274558
Category texinfo Changed by Thomas <thomb@pm.me> Changed at Sun 12 Jul 2026 00:18:18 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 0cfc3901248e61fc6565044e3a2dbf84be89b585 Comments
* info/t/quoted-index-target.sh: new test.
Changed files
- ChangeLog
- info/Makefile.am
- info/t/infodir/quoting.info
- info/t/quoted-index-target.sh
Change #274559
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 12 Jul 2026 01:05:40 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 3df9306acbb6b8e562ddb4b9599e4f221517fc07 Comments
Fix messaging after index search * info/indices.c (info_indices_of_file_buffer): Reset list of index entries once we find a node with an index tag. * info/t/infodir/index-search.info: Add missing index tag to test file. It was possible that the string "CAN'T SEE THIS" would be displayed as the name of an index in the message line, due to incorrect internal counting of index entries.
Changed files
- ChangeLog
- info/indices.c
- info/t/infodir/index-search.info
Change #274613
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 12 Jul 2026 21:19:40 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 37631c5ae909fb4efa8cfeb6efc1f014e1db675c Comments
* tta/data/converters_defaults.txt: Add section for 'plaintext'. Edit comments at top of file. * tta/perl/Texinfo/Convert/Plaintext.pm (%defaults): Set with Texinfo::Options::get_regular_options.
Changed files
- ChangeLog
- tta/C/convert/converters_options.c
- tta/C/convert/converters_options.h
- tta/data/converters_defaults.txt
- tta/perl/Texinfo/Convert/Plaintext.pm
- tta/perl/Texinfo/Options.pm
Change #274617
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sun 12 Jul 2026 21:50:11 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 35b72064a42b310440dcd12be9d5a1fc3bc35493 Comments
* tta/C/convert/convert_to_plaintext.c (plaintext_converter_defaults): Call new generated function add_plaintext_regular_options_defaults.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274640
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 13 Jul 2026 00:33:02 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision d6a99eb1b79498a9b5d4a2bb7b91781615a67687 Comments
* tta/C/main/unicode-collation: sync
Changed files
- ChangeLog
- tta/C/Makefile.am
- tta/C/main/unicode-collation/collation-table.c
- tta/C/main/unicode-collation/collation_data_lookup.c
- tta/C/main/unicode-collation/collation_data_lookup.h
- tta/C/main/unicode-collation/collation_key.c
- tta/C/main/unicode-collation/collation_key.h
- tta/C/main/unicode-collation/uN_make_key_streaming.inc
Change #274794
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 14 Jul 2026 02:04:28 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision e0c6135a08ec4c9185494d294c928f9ecb7de1cf Comments
* info/t/quoted-index-target.sh: in grep regular expression, replace "[[:blank:]]\{1,\}" with " *", as this seems simpler and avoids any hint of locale dependence.Changed files
- ChangeLog
- info/t/quoted-index-target.sh
Change #274798
Category texinfo Changed by Thomas <thomb@pm.me> Changed at Tue 14 Jul 2026 02:34:07 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision bd26dc462901353518e8aa957eee50a7ba787f1d Comments
* info/indices.c (format_reference): Place quoting DEL bytes around node name if it contains a :. * info/scan.h, info/scan.c: move INFO_QUOTE, INFO_QUOTE_STR definition to scan.h.
Changed files
- ChangeLog
- info/indices.c
- info/scan.c
- info/scan.h
Change #274802
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 14 Jul 2026 02:35:14 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 812aa4a8d3dbb9b49c59b1c596fdcfc91f617fa5 Comments
* info/t/quoted-index-target.sh: update test
Changed files
- ChangeLog
- info/t/quoted-index-target.sh
Change #274805
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 14 Jul 2026 02:49:10 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 93dc163b136b0d283c8d66ff7acbc6d774c6faf5 Comments
* tta/: run "gnulib --remove-import unistr/u32-strdup" as this module is not needed any more.
Changed files
- ChangeLog
- tta/gnulib/lib/Makefile.am
- tta/gnulib/lib/attribute.h
- tta/gnulib/lib/bcp47.c
- tta/gnulib/lib/bcp47.h
- tta/gnulib/lib/gettext.h
- tta/gnulib/lib/intprops-internal.h
- tta/gnulib/lib/localcharset.c
- tta/gnulib/lib/locale.in.h
- tta/gnulib/lib/localeconv.c
- tta/gnulib/lib/malloca.h
- tta/gnulib/lib/mbiter-aux.c
- tta/gnulib/lib/mbiter-aux.h
- tta/gnulib/lib/mbiterf.h
- tta/gnulib/lib/mbrtoc32.c
- tta/gnulib/lib/mbrtowc.c
- tta/gnulib/lib/minmax.h
- tta/gnulib/lib/printf-args.c
- tta/gnulib/lib/pthread.in.h
- tta/gnulib/lib/stat-time.h
- tta/gnulib/lib/stdlib.in.h
- tta/gnulib/lib/string.in.h
- tta/gnulib/lib/sys_stat.in.h
- tta/gnulib/lib/uchar.in.h
- tta/gnulib/lib/unistd.in.h
- tta/gnulib/lib/unistr/u-strdup.h
- tta/gnulib/lib/unistr/u-strlen.h
- tta/gnulib/lib/unistr/u32-strdup.c
- tta/gnulib/lib/unistr/u32-strlen.c
- tta/gnulib/lib/vasnprintf.c
- tta/gnulib/lib/xalloc-oversized.h
- tta/gnulib/lib/xsize.h
- tta/gnulib/m4/c32rtomb.m4
- tta/gnulib/m4/fcntl_h.m4
- tta/gnulib/m4/free.m4
- tta/gnulib/m4/gnulib-cache.m4
- tta/gnulib/m4/gnulib-common.m4
- tta/gnulib/m4/gnulib-comp.m4
- tta/gnulib/m4/iswdigit.m4
- tta/gnulib/m4/iswxdigit.m4
- tta/gnulib/m4/localeconv.m4
- tta/gnulib/m4/mbrtoc32.m4
- tta/gnulib/m4/mbrtowc.m4
- tta/gnulib/m4/minmax.m4
- tta/gnulib/m4/size_max.m4
- tta/gnulib/m4/stdckdint_h.m4
- tta/gnulib/m4/stdcountof_h.m4
- tta/gnulib/m4/uchar_h.m4
- tta/gnulib/m4/vasnprintf.m4
- tta/gnulib/m4/wcrtomb.m4
- tta/gnulib/m4/xsize.m4
Change #274808
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 14 Jul 2026 02:53:28 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision ada915a3e860b1f582e0ab5a3a996abc42caa5d7 Comments
* tta/: run "gnulib --add-import unistr/u32-mbsnlen unistr/u32-mbtouc". Report from Bruno Haible.
Changed files
- ChangeLog
- tta/gnulib/lib/Makefile.am
- tta/gnulib/lib/unistr/u32-mbsnlen.c
- tta/gnulib/lib/unistr/u32-mbtouc.c
- tta/gnulib/m4/gnulib-cache.m4
- tta/gnulib/m4/gnulib-comp.m4
Change #274909
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Tue 14 Jul 2026 22:41:14 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 71d4c36844a540859e9b3a474045b61b0389d11f Comments
Rename generated file. * tta/C/main/element_types.awk: Rename generated file element_types.c to types_data.c. This means that the comment at the top of tta/C/main/types_data.h refers to a file which exists, types_data.c, for which it contains declarations. This code has changed before, most recently in 2024-05-31 when the number of .c files generated by this helper program was reduced from 2 to 1.
Changed files
- ChangeLog
- tta/C/Makefile.am
- tta/C/main/element_types.awk
- tta/C/main/element_types.c
- tta/C/main/types_data.c
Change #274923
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 15 Jul 2026 00:18:47 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 0dac1061a2f7347eb13b6031172cedb88c273fbb Comments
* tta/perl/Texinfo/Convert/Plaintext.pm (_convert): Return after processing text.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #274924
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 15 Jul 2026 00:26:29 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 86e7122f6ae1396b8b9db27af7910aedf4bb3545 Comments
Continue C plaintext converter * tta/C/convert/convert_to_plaintext.c (convert_to_plaintext_internal): Return statement after processing text now matches Perl code.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274926
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 15 Jul 2026 00:54:55 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 986926f41b8b0c4d779e18e8d276fbac2e1af01d Comments
Continue C plaintext converter * tta/C/convert/convert_to_plaintext.c (convert_to_plaintext_internal): Add more template code.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #274927
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 15 Jul 2026 01:04:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision df8b7f6a6b011a93ff2def012539ea1c0c792172 Comments
* tta/C/Makefile.am: Fix rules to refer to main/types_data.c correctly.
Changed files
- ChangeLog
- tta/C/Makefile.am
Change #274978
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 15 Jul 2026 15:33:29 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 9e651f77ade39e37063b6c7334480cecc1e5ce75 Comments
* tta/perl/Texinfo/Convert/Plaintext.pm (_stream_reset, _stream_yield_result): New functions. (convert_output_unit): Use them.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #274981
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 15 Jul 2026 15:36:58 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 6a92b2f56413500f2004d1f0437d216a5c57d168 Comments
Continue C plaintext converter * tta/C/main/text.c (text_abandon): New function. * tta/C/convert/convert_to_plaintext.c (stream_reset, stream_yield_result): New. (convert_to_plaintext): Call stream_yield_result to avoid calling strdup unnecessarily.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/convert_to_plaintext.h
- tta/C/main/text.c
- tta/C/main/text.h
Change #275063
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 15 Jul 2026 22:14:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 3f1f81585f9af8f9b8054b711a6b67938c2ac60f Comments
* tta/C/main/text.c (text_abandon, text_yield): Rename and return pointer to text buffer.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/main/text.c
- tta/C/main/text.h
Change #275064
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 16 Jul 2026 15:48:30 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 83e09236dd2fe9c1545d08f735dc769928aa4b4f Comments
LaTeX: \smallbreak before definition * tta/perl/Texinfo/Convert/LaTeX.pm (_convert_def_line): Output \smallbreak before definition output. Report from Dimitris Papavasiliou <dpapavas@protonmail.ch>.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/LaTeX.pm
- tta/perl/t/results/converters_tests/complex_nestings.pl
- tta/perl/t/results/converters_tests/conversion_with_undef_customization/res_latex/conversion_with_undef_customization.tex
- tta/perl/t/results/converters_tests/definition_commands/res_latex/definition_commands.tex
- tta/perl/t/results/converters_tests/form_feeds.pl
- tta/perl/t/results/converters_tests/frenchspacing_and_code.pl
- tta/perl/t/results/converters_tests/test_deftypefnnewline.pl
- tta/perl/t/results/coverage/def.pl
- tta/perl/t/results/def/adjacent_defline.pl
- tta/perl/t/results/def/comment_index_before_defline.pl
- tta/perl/t/results/def/defline_no_params.pl
- tta/perl/t/results/def/deftypeline.pl
- tta/perl/t/results/def/multiple_defline.pl
- tta/perl/t/results/def/omit_def_space.pl
- tta/perl/t/results/def/text_block_before_defline.pl
- tta/perl/t/results/indices/empty_index_entry.pl
- tta/perl/t/results/indices/empty_string_index_entry.pl
- tta/perl/t/results/languages/documentlanguagevariant_conversion.pl
- tta/perl/t/results/languages/documentscript_conversion.pl
- tta/perl/t/results/languages/multiple_lang_chapters_latex/res_latex/multiple_lang_chapters.tex
- tta/perl/t/results/latex_tests/brace_in_index.pl
- tta/perl/t/results/latex_tests/brace_in_index/res_latex/brace_in_index.tex
- tta/perl/t/results/preformatted/def_in_example.pl
- tta/perl/t/results/preformatted/exampleindent_set_nestings.pl
- tta/perl/t/results/preformatted/exampleindent_zero_nestings.pl
- tta/tests/coverage/res_parser/formatting_latex/formatting.tex
Change #275078
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 16 Jul 2026 23:41:49 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c48c33485ebcd9e81c1a12792fed6815a728ee4f Comments
Change paragraphindent from string to integer * tta/data/options_data.txt: declare paragraphindent as integer * tta/perl/Texinfo/Common.pm (informative_command_value), * tta/C/main/utils.c (informative_command_value), * tta/perl/texi2any.pl, * tta/C/texi2any.c: For paragraphindent, save 'asis' value as -2 and 'none' value as 0. * tta/perl/Texinfo/Convert/Plaintext.pm (_convert): update to handle paragraphindent setting as integer. * tta/C/convert/convert_to_plaintext.c: update This simplifies the C conversion code as we now don't need to call strcmp and strtol for every paragraph.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/main/options_defaults.c
- tta/C/main/options_init_free.c
- tta/C/main/utils.c
- tta/C/texi2any.c
- tta/data/options_data.txt
- tta/perl/Texinfo/Common.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
- tta/perl/Texinfo/Options.pm
- tta/perl/texi2any.pl
Change #275079
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 17 Jul 2026 02:53:14 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 813528ac8e7acbe1865db928ed847a09e383f0ad Comments
Info: Add space for image output * tta/perl/Texinfo/Convert/ParagraphNonXS.pm (add_to_counter), * tta/C/convert/plaintext_paragraph.c (para_add_to_counter), * tta/perl/XSTexinfo/ParagraphXS.xs (para_add_to_counter): New functions. * tta/perl/Texinfo/Convert/Plaintext.pm (_convert) <image>: Call it in order to account for some horizontal space taken up by an image. Add a comment describing the unsatisfactory situation. Report from Werner.
Changed files
- ChangeLog
- tta/C/convert/plaintext_paragraph.c
- tta/C/convert/plaintext_paragraph.h
- tta/perl/Texinfo/Convert/ParagraphNonXS.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
- tta/perl/XSTexinfo/ParagraphXS.xs
- tta/perl/t/results/converters_tests/commands_in_sc.pl
- tta/perl/t/results/converters_tests/various_itemize_command_as_argument.pl
- tta/perl/t/results/info_tests/image_and_spaces_formatting.pl
- tta/tests/coverage/res_parser/formatting_info/formatting.info
- tta/tests/coverage/res_parser/formatting_plaintext/formatting.txt
- tta/tests/layout/res_parser/formatting_fr_info/formatting.info
- tta/tests/layout/res_parser/formatting_info_ascii_punctuation/formatting.info
- tta/tests/layout/res_parser/formatting_info_disable_encoding/formatting.info
- tta/tests/layout/res_parser/formatting_plaintext_ascii_punctuation/formatting.txt
Change #275080
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 17 Jul 2026 03:15:43 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 428de6449ecaacc316fe0f151e757720c1e258bd Comments
* doc/texinfo.texi (Images, Image Syntax): Try to discourage using images inside paragraphs.
Changed files
- ChangeLog
- doc/texinfo.texi
Change #275135
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 18 Jul 2026 00:42:28 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 5ec5078e74fa15beb0c86fb3f179258b31c0c773 Comments
* info/signals.c (info_signal_handler) [!HAVE_SIGACTION]: Remove #define of info_signal_handler to info_signal_proc. This is incorrect as the former is a structure and the latter is a function. info_signal_handler is not referred to elsewhere in this file under !HAVE_SIGACTION, except under both conditions are true, there is a compilation error. This #define appears to have been present since the use of sigaction was introduced in a patch by AIDA Shinra, dated 2003-01-25.
Changed files
- ChangeLog
- info/signals.c
Change #275136
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 18 Jul 2026 01:16:35 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 283bedb13d1f3c04b73e9a28014e95ddaa57b605 Comments
Use sig_atomic_t * info/signals.c [!HAVE_SIGACTION] (term_conf_busy), (sigwinch_block_count): Declare as volatile sig_atomic_t rather than int, as they are accessed inside the signal handler info_signal_proc.
Changed files
- ChangeLog
- info/signals.c
Change #275137
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 18 Jul 2026 01:28:38 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 9c87a85dfd4667ce7b37ad44ce9b95ac7378d8b3 Comments
* info/scan.c (scan_reference_target) <menu entry>: Allow tab to follow period in terminating node name.
Changed files
- ChangeLog
- info/scan.c
Change #275140
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 18 Jul 2026 03:13:48 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 653e55a98ff65df5abd9650f47e1e81d3a4002e2 Comments
* configure.ac (AC_CHECK_FUNCS): Remove check for sigprocmask. * info/signals.c (info_signal_proc) [!HAVE_SIGACTION && HAVE_SIGPROCMASK]: Remove code. Systems without sigaction but which do have sigprocmask may be rare - the Gnulib manual only mentions that both functions are missing on mingw and MSVC 14. (term_conf_busy): Remove unused.
Changed files
- ChangeLog
- configure.ac
- info/signals.c
Change #275147
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 18 Jul 2026 15:39:25 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 35a0d96e366df26a6b071084567f1489ee69907f Comments
* configure.ac (AC_CHECK_FUNCS): Re-add sigprocmask as HAVE_SIGPROCMASK is used in into/signals.h.
Changed files
- ChangeLog
- configure.ac
Change #275203
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sun 19 Jul 2026 19:18:00 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 234d13a6a40d208be11cdc7bfecd999325da6b9a Comments
* tta/TODO: link to recently started discussions on manuals translations. Improve comments.
Changed files
- ChangeLog
- tta/TODO
- tta/perl/Texinfo/Indices.pm
Change #275244
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 20 Jul 2026 00:40:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 4d4f9fcac68c42fa76428d960922166011e504a2 Comments
* info/signals.h: Remove use of HAVE_SIGSETMASK conditional. Check for sigsetmask was removed on 2019-02-17.
Changed files
- ChangeLog
- info/signals.h
Change #275245
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 20 Jul 2026 00:40:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 0659a076d8d9c3b25737136e5101a023c05c3fe9 Comments
Remove check of SA_NOCLDSTOP * info/signals.c (initialize_info_signal_handler): Use #ifdef HAVE_SIGACTION instead of #ifdef SA_NOCLDSTOP. * info/signals.h: Remove check of SA_NOCLDSTOP from condition. The use of SA_NOCLDSTOP was introduced on 2004-03-27 for the benefit of Solaris 7, which is likely no longer a relevant system to support. signals.h had a comment referencing "sort.c" in the coreutils sources, but recent coreutils sources do not check SA_NOCLDSTOP any more (likely since change on 2025-11-22).
Changed files
- ChangeLog
- info/signals.c
- info/signals.h
Change #275246
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 20 Jul 2026 00:40:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 2928ef87dadf009493808833861049686d54af03 Comments
Remove unused definitions for !HAVE_SIGPROCMASK * info/signals.h [!HAVE_SIGPROCMASK] (sigmask, SIG_UNBLOCK, SIG_BLOCK, sigset_t, sigemptyset, sigfillset) (sigaddset, sigdelset, sigismember, sigsuspend): Remove #define's as these symbols are not otherwise used under this condition.
Changed files
- ChangeLog
- info/signals.h
Change #275247
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 20 Jul 2026 00:40:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision b095abe71efee087f3de1eb4c22a35c692cb2c8d Comments
* doc/texinfo.tex (\include): Remove \tracingmacros=1 left in by mistake.
Changed files
- ChangeLog
- doc/texinfo.tex
Change #275296
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 20 Jul 2026 22:34:43 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 6eb652c0ab516468dc93ba6412e33cae875ab03c Comments
* info/info.c (main) <--index-search>: Pass -1 as starting offset to next_index_match otherwise we skip over the very first index entry in the first index node.
Changed files
- ChangeLog
- info/info.c
Change #275297
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 20 Jul 2026 22:52:34 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 8a082ce77d1e04525f5d72c7bc126cb03ec41bbc Comments
Change info test not to use :cntrl: in grep regex * info/t/quoted-index-target.sh: Strip out DEL bytes from output file with tr. Remove use of "[[:cntrl:]]" in grep regex to check for such bytes. Alter test slightly to be effective with updated regex, using "--index-search" instead of "--index-search --all", which means we actually go to the referenced node. The use of "[[:cntrl:]]" in a grep regex led to a failure on Solaris 11, where apparently such character classes are not recognised by the grep program. Report from Bruno.
Changed files
- ChangeLog
- info/t/quoted-index-target.sh
Change #275298
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 20 Jul 2026 22:58:10 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 84222f739e09eb0aa969039ba0dffee9aa137d64 Comments
rm extra line in ChangeLog
Changed files
- ChangeLog
Change #275349
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Tue 21 Jul 2026 12:37:45 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision d2ac3cebc9b608cb6801c85223fd8876cfd41fb0 Comments
Continue C plaintext converter and conversion initialization * tta/C/convert/converter.c (initialize_cmd_list), tta/C/convert/html_prepare_converter.c: move initialize_cmd_list to converter.c. * tta/C/convert/convert_to_plaintext.c (plaintext_converter_initialize), tta/C/main/plaintext_converter_state.h (PLAINTEXT_CONVERTER_STATE): implement plaintext_converter_initialize. * tta/perl/Texinfo/Convert/Plaintext.pm (converter_initialize): info_special_chars_warning is an integer, not a string. * tta/C/convert/convert_to_plaintext.c (plaintext_conversion_initialization, informative_global_commands) (contents_commands, plaintext_free_converter) (plaintext_converter_initialize), tta/C/main/plaintext_converter_state.h (PLAINTEXT_CONVERTER_STATE): being the implemention of plaintext_conversion_initialization. * tta/C/convert/convert_to_plaintext.c (format_raw_cmd) (PLAINTEXT_COMMAND_STRUCT, plaintext_commands_data) (plaintext_format_setup), tta/C/convert/converter.c (converter_format_data): setup constant data related to raw formt commands.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/convert_to_plaintext.h
- tta/C/convert/converter.c
- tta/C/convert/converter.h
- tta/C/convert/html_prepare_converter.c
- tta/C/main/html_converter_state.h
- tta/C/main/plaintext_converter_state.h
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #275406
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 22 Jul 2026 00:37:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 72338b61ce2ef11c8ac9d9d515ca2d49349995e0 Comments
info: do less in SIGWINCH handler * info/signals.c (signal_block_winch, signal_unblock_winch): Remove functions. Remove all calls to these functions. (sigwinch_block_count): Remove. (This reverses much of change on 2014-07-07.) (info_signal_proc) <SIGWINCH, SIGUSR1>: Do not do any redrawing of terminal inside this function. Instead, set a volatile variable to indicate that the terminal size may have changed and that windows need to be redrawn. (maybe_update_after_signal): New function, to be called outside of a signal handler on a regular basis. Redraw display if it's possible the screen size has changed. * info/session.c (fill_input_buffer): Call maybe_update_after_signal. According to C standards and glibc documentation, accessing data structures or calling library functions in a signal handler can lead to undefined behaviour.
Changed files
- ChangeLog
- info/display.c
- info/session.c
- info/signals.c
- info/signals.h
Change #275407
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 22 Jul 2026 00:37:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision e7c784125f340e2703c70334b0fb73a3d9baecb9 Comments
info: expand tabs to spaces * info/echo-area.c, info/filesys.c, info/info.c, info/infopath.c, info/makedoc.c, info/m-x.c info/nodemenu.c, info/run-external.c, info/signals.c, info/tag.c, info/tilde.c, info/variables.c, info/session.h: Expand tabs used for indentation in files where they are anomalous. Leading tabs can make the output of "git diff" look wrong due to lines being misaligned.
Changed files
- ChangeLog
- info/echo-area.c
- info/filesys.c
- info/info.c
- info/infopath.c
- info/m-x.c
- info/makedoc.c
- info/nodemenu.c
- info/run-external.c
- info/session.h
- info/signals.c
- info/tag.c
- info/tilde.c
- info/variables.c
Change #275471
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Wed 22 Jul 2026 15:05:51 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c11d94e30b298649d88b6598d1b33bd3f43b0464 Comments
C plaintext converter output and convert * tta/C/convert/convert_to_plaintext.c (plaintext_converter_initialize): fix sizeof call. * tta/C/convert/convert_to_plaintext.c (plaintext_convert_tree): do not set top_formatter context that is supposed to be already set. * tta/C/main/html_converter_state.h (HTML_CONVERTER_STATE), tta/C/main/converter_types.h (CONVERTER): move output_unit_file_indices field to the generic converter as it should be along with output_unit_files. Update users. * tta/C/convert/convert_to_plaintext.c (plaintext_conversion_finalization), tta/C/main/plaintext_converter_state.h (PLAINTEXT_CONVERTER_STATE): add encoding_disabled field. * tta/perl/Texinfo/Convert/Converter.pm (set_output_units_files): use directly associated_unit for Top node. Fix set_output_unit_file call in the last resort code (which is probably never called). * tta/C/convert/converter.c (set_output_units_files): add. * tta/C/convert/convert_to_plaintext.c (convert_output_unit) (plaintext_output, plaintext_convert): implement plaintext_output and plaintext_convert fully, and convert_output_unit partially. * tta/perl/Texinfo/Convert/Plaintext.pm (output): change a variable name.
Changed files
- ChangeLog
- tta/C/convert/convert_html.c
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/converter.c
- tta/C/convert/converter.h
- tta/C/convert/format_html.c
- tta/C/convert/html_converter_finish.c
- tta/C/convert/html_prepare_converter.c
- tta/C/main/converter_types.h
- tta/C/main/html_converter_state.h
- tta/C/main/plaintext_converter_state.h
- tta/perl/Texinfo/Convert/Converter.pm
- tta/perl/Texinfo/Convert/HTMLNonXS.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #275509
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Wed 22 Jul 2026 16:34:01 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision cbb309248378e449e3893603a97fc663ec1a4ba0 Comments
* info/info.c (main): fix removed first letters of function name calls.
Changed files
- ChangeLog
- info/info.c
Change #275518
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Wed 22 Jul 2026 19:27:54 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision f8983c7dcf1d651ddd34729bd26951fc285b415a Comments
* tta/C/convert/format_html.c (html_get_top_unit), tta/C/convert/html_prepare_converter.c (html_set_pages_files), tta/C/main/output_unit.c (units_directions), tta/C/structuring_transfo/structuring. (check_nodes_are_referenced) (complete_node_tree_with_menus, set_top_node_next) (construct_nodes_tree), tta/C/structuring_transfo/transformations.c (regenerate_master_menu), tta/perl/Texinfo/Convert/HTMLNonXS.pm (_get_top_unit, _html_set_pages_files), tta/perl/Texinfo/OutputUnits.pm (units_directions), tta/perl/Texinfo/StructuringNonXS.pm (check_nodes_are_referenced) (complete_node_tree_with_menus, construct_nodes_tree), tta/perl/Texinfo/TransformationsNonXS.pm (regenerate_master_menu): rename node_top as top_node. Rename top_node as top_target_element when it is not checked that the element is a @node element. Check that the element is a @node when needed. * tta/perl/Makefile.tres, tta/perl/t/converters_tests.t (top_is_an_anchor, top_is_an_anchor_and_node): test an anchor being named Top. * tta/perl/Makefile.tres, tta/perl/t/converters_tests.t (@file_tests): also test file_plaintext.
Changed files
- ChangeLog
- tta/C/convert/format_html.c
- tta/C/convert/html_prepare_converter.c
- tta/C/main/output_unit.c
- tta/C/structuring_transfo/structuring.c
- tta/C/structuring_transfo/transformations.c
- tta/perl/Makefile.tres
- tta/perl/Texinfo/Convert/HTMLNonXS.pm
- tta/perl/Texinfo/OutputUnits.pm
- tta/perl/Texinfo/StructuringNonXS.pm
- tta/perl/Texinfo/TransformationsNonXS.pm
- tta/perl/t/converters_tests.t
- tta/perl/t/results/converters_tests/combined_fonts/res_plaintext/combined_fonts.txt
- tta/perl/t/results/converters_tests/conversion_with_undef_customization.pl
- tta/perl/t/results/converters_tests/conversion_with_undef_customization/res_plaintext/conversion_with_undef_customization.txt
- tta/perl/t/results/converters_tests/empty/res_plaintext/empty.txt
- tta/perl/t/results/converters_tests/extension_undef/res_plaintext/extension_undef.txt
- tta/perl/t/results/converters_tests/indices_in_begin_tables_lists.pl
- tta/perl/t/results/converters_tests/indices_in_begin_tables_lists/res_plaintext/indices_in_begin_tables_lists.txt
- tta/perl/t/results/converters_tests/indices_in_begin_tables_lists_entries_after_item.pl
- tta/perl/t/results/converters_tests/indices_in_begin_tables_lists_entries_after_item/res_plaintext/indices_in_begin_tables_lists_entries_after_item.txt
- tta/perl/t/results/converters_tests/minimal_empty_empty/res_plaintext/minimal_empty_empty.txt
- tta/perl/t/results/converters_tests/minimal_empty_with_bye/res_plaintext/minimal_empty_with_bye.txt
- tta/perl/t/results/converters_tests/minimal_empty_with_input/res_plaintext/minimal_empty_with_input.txt
- tta/perl/t/results/converters_tests/setfilename_no_extension/res_plaintext/setfilename_no_extension.txt
- tta/perl/t/results/converters_tests/simplest_no_node_section/res_plaintext/simplest_no_node_section.txt
- tta/perl/t/results/converters_tests/simplest_test_prefix/res_plaintext/simplest_test_prefix.txt
- tta/perl/t/results/converters_tests/top_is_an_anchor.pl
- tta/perl/t/results/converters_tests/top_is_an_anchor/res_docbook/top_is_an_anchor.xml
- tta/perl/t/results/converters_tests/top_is_an_anchor/res_html/index.html
- tta/perl/t/results/converters_tests/top_is_an_anchor/res_info/top_is_an_anchor.info
- tta/perl/t/results/converters_tests/top_is_an_anchor/res_latex/top_is_an_anchor.tex
- tta/perl/t/results/converters_tests/top_is_an_anchor/res_plaintext/top_is_an_anchor.txt
- tta/perl/t/results/converters_tests/top_is_an_anchor/res_xml/top_is_an_anchor.xml
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node.pl
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node/res_docbook/top_is_an_anchor_and_node.xml
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node/res_html/index.html
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node/res_html/some-node.html
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node/res_info/top_is_an_anchor_and_node.info
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node/res_latex/top_is_an_anchor_and_node.tex
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node/res_plaintext/top_is_an_anchor_and_node.txt
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node/res_xml/top_is_an_anchor_and_node.xml
Change #275519
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 22 Jul 2026 19:37:37 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 0c0956c05dfaf63f3b027b4af33a9949eba21a79 Comments
* info/info.c: fix formatting
Changed files
- ChangeLog
- info/info.c
Change #275520
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 22 Jul 2026 19:38:37 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 3c8d118488f0da600bf882419a584a78d4573330 Comments
* info/signals.c, info/infomap.c: Remove lines setting vim editing options.
Changed files
- ChangeLog
- info/infomap.c
- info/signals.c
Change #275521
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Wed 22 Jul 2026 19:45:11 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision c1bbfe0b93cc73644c517aa2f53e41d90f86dba3 Comments
* tta/C/structuring_transfo/structuring.c (register_referenced_node) (check_nodes_are_referenced): add some const.
Changed files
- ChangeLog
- tta/C/structuring_transfo/structuring.c
Change #275522
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Wed 22 Jul 2026 19:45:11 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 78033e7d1b2a8d4736240961536d94033d33e7ff Comments
Update test result
Changed files
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node.pl
Change #275536
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 22 Jul 2026 22:44:51 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 81b012b1eabd5c02b806a4a8ddc4ee27313ac620 Comments
* info/signals.c, info/signals.h: Move most of the contents of signals.h into signals.c. Provide declaration of initialize_info_signal_handler in signals.h.
Changed files
- ChangeLog
- info/session.c
- info/signals.c
- info/signals.h
Change #275537
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 22 Jul 2026 22:44:51 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 09bb1dc7b02ed0bd78b03fd918928b3c94757c56 Comments
* info/signals.c (info_signal_proc) <SIGWINCH>: Do not attempt to unblock signal, as this should be unnecessary.
Changed files
- ChangeLog
- info/signals.c
Change #275538
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Wed 22 Jul 2026 22:44:51 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 3449b60c6af7d9a127aeef726d1b48f84483949a Comments
* doc/texinfo.texi (HTML Output Structure Customization): Move discussion of SPLIT after discussion of USE_NODES and say that by default, "each output unit" rather than "each node" is output in a separate file as this may not be the case if USE_NODES=0.
Changed files
- ChangeLog
- doc/texinfo.texi
Change #275549
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Thu 23 Jul 2026 00:03:48 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 77f60aa958cdbc62314281c6f6a744a3582f3e43 Comments
* tta/C/convert/converter.c (set_output_units_files): free file_name_text text. * tta/C/convert/html_prepare_converter.c (html_converter_initialize_beginning), tta/C/convert/html_converter_finish.c (html_free_converter), tta/C/main/converter_types.h (CONVERTER): make html_converter a pointer in CONVERTER. Update users. * tta/C/main/get_perl_info.c (find_element_extra_index_entry_sv): access html_converter only if converter is set. * tta/C/main/get_perl_info.c (converter_release_output_units_built), tta/C/convert/converter.c (destroy_converter_output_units), tta/C/convert/converter.c (reset_tree_to_build): check if html_converter is set.
Changed files
- ChangeLog
- tta/C/convert/build_html_perl_info.c
- tta/C/convert/build_html_perl_state.c
- tta/C/convert/call_html_perl_function.c
- tta/C/convert/convert_html.c
- tta/C/convert/converter.c
- tta/C/convert/format_html.c
- tta/C/convert/html_conversion_state.c
- tta/C/convert/html_converter_finish.c
- tta/C/convert/html_prepare_converter.c
- tta/C/main/build_perl_info.c
- tta/C/main/command_stack.c
- tta/C/main/converter_types.h
- tta/C/main/get_perl_info.c
- tta/C/main/utils.c
- tta/perl/XSTexinfo/convert/ConvertConverterXS.xs
- tta/perl/XSTexinfo/convert/ConvertHTMLXS.xs
- tta/perl/XSTexinfo/convert/get_html_perl_info.c
Change #275551
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Thu 23 Jul 2026 00:03:48 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision d019f715d203770f03b82f848bfbf16451f6fe75 Comments
* tta/C/convert/convert_to_plaintext.c (plaintext_free_converter) (plaintext_converter_initialize), tta/C/main/converter_types.h (CONVERTER): make plaintext_converter a pointer. Update users. * tta/C/convert/convert_to_plaintext.c: rename self_pt as self_plaintext, more homogeneous code.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/convert_to_plaintext.h
- tta/C/main/converter_types.h
Change #275554
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Thu 23 Jul 2026 01:09:56 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 800e85371522d22ebaf44c3541a5d7042fc869c3 Comments
* tta/C/main/converter_types.h (TRANSLATED_COMMAND) (TRANSLATED_COMMAND_LIST, DEPRECATED_DIR_INFO, DEPRECATED_DIRS_LIST) (enum command_type_variety, COMMAND_ID_LIST, FILE_STREAM) (FILE_STREAM_LIST, OUTPUT_FILES_INFORMATION, FILE_NAME_PATH_COUNTER) (FILE_NAME_PATH_COUNTER_LIST, CONVERTER, COMMAND_OR_TYPE) (COMMAND_OR_TYPE_STACK, STRING_STACK, INTEGER_STACK) (SORTED_INDEX_NAMES, ACCENT_ENTITY_INFO, COMMAND_ACCENT_ENTITY_INFO), tta/C/main/html_converter_state.h, tta/maintain/generate_css_data.pl: now that HTML_CONVERTER_STATE is used through a pointer, it is possible to have a declaration without definition and reverse the inclusion order of header files, by having html_converter_state.h include converter_types.h. Move back some non-HTML specific types to converter_types.h. Add #include "html_converter_state.h" where needed. * tta/C/convert/convert_to_plaintext.c, tta/C/main/converter_types.h (CONVERTER): declare struct PLAINTEXT_CONVERTER_STATE and do not include plaintext_converter_state.h in converter_types.h.
Changed files
- ChangeLog
- tta/C/convert/call_html_perl_function.c
- tta/C/convert/call_html_perl_function.h
- tta/C/convert/convert_html.c
- tta/C/convert/convert_html.h
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/converter.c
- tta/C/convert/html_conversion_api.h
- tta/C/convert/html_prepare_converter.h
- tta/C/main/build_perl_info.c
- tta/C/main/command_stack.c
- tta/C/main/command_stack.h
- tta/C/main/converter_types.h
- tta/C/main/get_perl_info.c
- tta/C/main/html_converter_state.h
- tta/C/main/html_css_data.c
- tta/maintain/generate_css_data.pl
- tta/perl/XSTexinfo/convert/ConvertConverterXS.xs
Change #275556
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Thu 23 Jul 2026 01:14:04 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision dfe8c28278c06289af7716dbe9147de7b983108d Comments
* tta/C/convert/convert_to_plaintext.c (plaintext_free_converter): free plaintext_converter only if it was allocated. It is allocated if the converter is created from C, but not if created from XS.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #275562
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 23 Jul 2026 02:07:42 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision e83cde7cb868c70a2a660ebb7dcd14098514aaff Comments
Add const * info/variables.c (update_rendition_from_string) (update_highlight_searches, set_variable_to_value): Change argument from type char * to const char *.
Changed files
- ChangeLog
- info/variables.c
- info/variables.h
Change #275563
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 23 Jul 2026 02:22:16 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 0cf13bccdf58e20b65808ed9ef364a15b8174b5d Comments
Add const * info/terminal.c (terminal_initialize_terminal) (terminal_initialize_terminal_hook): * info/pcterm.c (pc_initialize_terminal): Change types of arguments from char * to const char *. * info/terminal.c (term_name): change type from char * to const char *.
Changed files
- ChangeLog
- info/pcterm.c
- info/terminal.c
- info/terminal.h
Change #275564
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 23 Jul 2026 02:27:27 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 7d1086ac721e59c28c836d2b5c693dc642232f3a Comments
* info/terminal.c (terminal_new_terminal, terminal_new_terminal_hook): Remove unused.
Changed files
- ChangeLog
- info/terminal.c
- info/terminal.h
Change #275565
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 23 Jul 2026 02:37:10 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision f96f8474954eb36a4f48ff15d3d81e67e3c003ed Comments
Add const * info/tag.c (tag_expand, struct tag_handler, tag_image) (find_tag_handler, tag_expand): Change type of parameters from char * to const char *, or char ** to const char **.
Changed files
- ChangeLog
- info/scan.c
- info/tag.c
- info/tag.h
Change #275574
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Thu 23 Jul 2026 09:35:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 8af6e4425a7e05b8d6627617a5a18f02ddd17dc3 Comments
* tta/C/main/plaintext_converter_state.h (PLAINTEXT_COMMAND_STRUCT): move to plaintext_converter_state.h. * tta/C/convert/convert_to_plaintext.c (PF_ignored) (plaintext_format_setup, plaintext_converter_initialize) (convert_to_plaintext_internal), tta/C/main/plaintext_converter_state.h (PLAINTEXT_CONVERTER_STATE): setup default ignored commands in plaintext_commands_data flags. Add commands_data PLAINTEXT_COMMAND_STRUCT array in PLAINTEXT_CONVERTER_STATE. Copy plaintext_commands_data to commands_data in plaintext_converter_initialize, and modify based on customization. * tta/C/convert/convert_to_plaintext.c (PF_informative) (plaintext_format_setup, convert_to_plaintext_internal): setup informative commands as a flag in plaintext_commands_data.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/main/plaintext_converter_state.h
Change #275649
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Thu 23 Jul 2026 21:31:37 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 2b21b8a3044333a0dcb381b49c7cd35bf4f83f93 Comments
Shadow targets for texinfo.tex * doc/texinfo.tex (\donoderef): If no preceding @node, use the section text itself as the target name, passed to new macro \setrefshadow. (\setrefshadow): Output @xrshad line to .aux file for shadow target, and run \pdfdest in PDF output. (\setref, \dosetref): Split out \dosetref. (\xrshad): Provide definition for control sequence written to .aux file. Save information on shadow targets. (\checkshadowactive): New macro, used to check if a shadow target can be referenced. (\xrefX): Use \checkshadowactive to decide if we should output a reference to a shadow target or not. (\xrdef, \xrdefctxt): Split out \xrdefctxt. (\getrefx): Use \xrdefctx. Check for a shadow target if information on the target couldn't be found. (\countA): Move definition earlier in file to use it as a general purpose count register.
Changed files
- ChangeLog
- doc/texinfo.tex
Change #275662
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 24 Jul 2026 01:24:31 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision bd8f895bed90f5e1b1a969539973eca88cb9a3e9 Comments
Split out handling of @var and @sc from "style map" * tta/perl/Texinfo/Convert/Plaintext.pm (_convert) <style map>: Separate handling of "upper case commands" (@var and @sc) from handling of commands added to $self->{'style_map'}. Most of the code in the "style map" clause was irrelevant, except for the code under the %no_punctation_munging_commands (sic) condition to set frenchspacing, which applied to @var. However, @var already had special-case code under the "upper case commands" condition, so adding the frenchspacing code under the @var condition doesn't increase complexity too much. (@asis_commands): Remove 'var', 'sc'.Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #275663
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 24 Jul 2026 01:28:30 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 8b19c00444fcf5c410f034409c7b5a1ccab9984c Comments
* tta/perl/Texinfo/Convert/Plaintext.pm (%no_punctation_munging_commands, no_punctuation_munging_commands): Rename. Remove 'var' as it is no longer checked for in this hash.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #275722
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Fri 24 Jul 2026 22:13:20 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 27bb5fcf034ef79eb79b972f3f0ad75083e695c4 Comments
Split quoted commands from "style map" * tta/perl/Texinfo/Convert/Plaintext.pm, (@quoted_commands, %quoted_commands): Change from array to hash. (%style_map): Do not add quoted commands. (conversion_initialization) <quoted commands>: Rather than updating $self->{'style_map'}, save the open and close quote strings in $self->{'open_quote'} and $self->{'close_quote'}. (_convert) <style map commands>: Check for commands in %quoted_commands as well as in $self->{'style_map'}; This is intended to simplify the C implementation as it will be slightly easier to check a Boolean flag for a Texinfo command rather than retrieving string values for that command. Many of the "quoted commands" are very frequently used commands such as @code so this should simplify a common case. This also means that the only command left whose values are likely to change inside $self->{'style_map'} is @dfn.Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #275785
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 25 Jul 2026 00:57:53 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision addc70a0a01a5095cbc053089c32d12969a2d93a Comments
* tta/C/convert/convert_to_plaintext.c: Initial implementation of handling "quoted commands".
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #275786
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Sat 25 Jul 2026 01:01:13 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision e2d320414c205c11874abb2120b70a94bf9ade4b Comments
* tta/C/convert/convert_to_plaintext.c (convert_to_plaintext_internal): Add TODO comment to match structure of Perl code.
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
Change #275823
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 10:42:57 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 2bf894820ccb0a62b2d26b1fb81c2b1b3384b42e Comments
* tta/perl/Texinfo/Convert/Info.pm (output, _info_header): set informative commands to the values at the end of the preamble outside of _info_header and reset only after converting and caching the node names. Use set_converter_preamble_language_commands and reset_lang_translation_from_customization to set all the language information.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Converter.pm
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Translations.pm
- tta/perl/t/results/languages/documentlanguagevariant_conversion.pl
- tta/perl/t/results/languages/documentscript_conversion.pl
Change #275825
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 10:42:57 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision ee7fa44829552aad5539ed577ac7870d7e293df1 Comments
* tta/C/convert/converter.c (set_output_units_files), tta/perl/Texinfo/Convert/Converter.pm (set_output_units_files), * tta/perl/Texinfo/Convert/Info.pm (output): rename node_top as top_node. Rename top_node as top_target_element before it is checked that the element is a @node element. Check that the element is a @node when needed.
Changed files
- ChangeLog
- tta/C/convert/converter.c
- tta/perl/Texinfo/Convert/Converter.pm
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/t/results/converters_tests/top_is_an_anchor_and_node.pl
Change #275828
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 10:58:22 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 077a402656655d69f95815de360034f489de17e3 Comments
Begin C info converter * tta/perl/Texinfo/Convert/Info.pm (_info_header): use directly element instead of using contents. * tta/C/convert/convert_to_plaintext.c (plaintext_get_informative_global_commands): add. * tta/C/convert/convert_to_plaintext.c (plaintext_convert_output_unit), tta/C/convert/convert_to_plaintext.h: rename convert_output_unit as plaintext_convert_output_unit. Update callers. Make some functions extern for the C info converter, and move PF_* defines to convert_to_plaintext.h. * tta/C/Makefile.am (C_libtexinfo_convert_sources), tta/C/main/plaintext_converter_state.h (PLAINTEXT_CONVERTER_STATE), C/convert/convert_to_info.c: start on the C info converter. Add in_copying_header in PLAINTEXT_CONVERTER_STATE.
Changed files
- ChangeLog
- tta/C/Makefile.am
- tta/C/convert/convert_to_info.c
- tta/C/convert/convert_to_info.h
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/convert_to_plaintext.h
- tta/C/main/plaintext_converter_state.h
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #275829
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 11:56:56 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 5fa234937c165875cfa94d1cc14f52fe364e3063 Comments
Do not call import on Texinfo::ModulePath without args in XSLoader.pm * tta/perl/Texinfo/XSLoader.pm (BEGIN): do not call Texinfo::ModulePath->import() without argument, it is always wrong not to pass the directories. Report and bisection from Dimitris Papavasiliou.
Changed files
- ChangeLog
- tta/perl/Texinfo/XSLoader.pm
Change #275847
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 12:45:03 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 7f7ad901599521f5d47bfe86bbbcd122b8c5b702 Comments
Enable C info converter * tta/C/convert/converter.c (converter_format_data), tta/C/convert/converter.h (TXI_CONVERSION_FORMAT_NR), tta/C/main/converter_types.h (COF_info), tta/C/texi2any.c (main): register info converter functions in converter_format_data and enable in texi2any.c. * tta/C/convert/plaintext_paragraph.c (para_end): mark returned char * as const, as it should be free'd in para_end, not by the caller. * tta/C/convert/convert_to_info.c (info_header): do not free para_end return value.
Changed files
- ChangeLog
- tta/C/convert/convert_to_info.c
- tta/C/convert/converter.c
- tta/C/convert/converter.h
- tta/C/convert/plaintext_paragraph.c
- tta/C/convert/plaintext_paragraph.h
- tta/C/main/converter_types.h
- tta/C/texi2any.c
Change #275848
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 20:48:33 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision a2d7cf221c1e2ded24e952f7f74b02ab5ca6829c Comments
Distinguish paragraph end and destruction; improve node name caching * tta/C/convert/plaintext_paragraph.c (para_end, para_destroy), tta/perl/Texinfo/Convert/ParagraphNonXS.pm (destroy), tta/perl/Texinfo/Convert/Plaintext.pm (destroy_formatter), tta/perl/XSTexinfo/ParagraphXS.xs (para_destroy): add destroy for paragraph and formatter and distinguish from end. * tta/perl/Texinfo/Convert/Plaintext.pm, tta/perl/Texinfo/Convert/Info.pm: destroy formatters when they are not used anymore. * tta/perl/Texinfo/Convert/Plaintext.pm (node_name): use a long-living formatter instead of calling convert_line_new_context. * tta/perl/Texinfo/Convert/Plaintext.pm (_cache_node_names): go through nodes_list instead of going through output units. * tta/perl/Texinfo/Convert/Plaintext.pm (convert_line) (convert_line_new_context): remove bogus third argument. * tta/perl/Texinfo/Convert/Plaintext.pm (new_formatter): simplify indent_length_next setting. Set max for paragraph type only. * tta/perl/Texinfo/Convert/Plaintext.pm: inline and remove _normalize_top_node.
Changed files
- ChangeLog
- tta/C/convert/convert_to_info.c
- tta/C/convert/plaintext_paragraph.c
- tta/C/convert/plaintext_paragraph.h
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Convert/ParagraphNonXS.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
- tta/perl/XSTexinfo/ParagraphXS.xs
Change #275849
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 20:53:19 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 1040c3244173f118cb786e0c6e23b3712bcc28eb Comments
* tta/perl/Texinfo/Convert/Plaintext.pm (_cache_node_names): use the same long-living formatter as node_name.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #275863
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 22:45:09 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision a22f809a72a22bec125d8aac931db8013fa31b06 Comments
* tta/perl/Texinfo/Convert/Info.pm (format_ref): if the cross-reference target is an internal identifier, call node_name to get the cached value or setup the cached value, it will be present or needed for the tag table. * tta/perl/Texinfo/Convert/Plaintext.pm (node_name): do not check that node_names_text key exists, it should always be initialized. * tta/perl/Texinfo/Indices.pm (print_indices_information): check if argument is not undef to avoid spurious autovivification.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Convert/ParagraphNonXS.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
- tta/perl/Texinfo/Indices.pm
Change #275870
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 23:20:27 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 7bd2a36b887a0ea72d7a10935403c783b7d1339f Comments
* tta/C/convert/convert_to_info.c (info_header), tta/C/convert/convert_to_plaintext.c (convert_to_plaintext_internal): call para_destroy to release the current formatter when it is not used anymore.
Changed files
- ChangeLog
- tta/C/convert/convert_to_info.c
- tta/C/convert/convert_to_plaintext.c
Change #275877
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sat 25 Jul 2026 23:46:57 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 6636fcd9a7897f90b6467900f126156c743b0e12 Comments
* tta/perl/Texinfo/Convert/Plaintext.pm (pop_top_formatter) (process_printindex): destroy more unused formatters. * tta/C/convert/plaintext_paragraph.c (para_destroy): add deebugging output.
Changed files
- ChangeLog
- tta/C/convert/plaintext_paragraph.c
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #275950
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sun 26 Jul 2026 06:18:28 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision f38b3dfe51f7a00649812242235989f4aa5e7554 Comments
* tta/perl/Texinfo/Convert/Plaintext.pm: move code around.
Changed files
- ChangeLog
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #275999
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Sun 26 Jul 2026 18:21:18 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 88055e7382ec720aac1177543ea1eb774a79acff Comments
* tta/C/convert/convert_to_plaintext.c (pop_count_context): destroy the previously top context, not the one above. * tta/C/main/list_macros.h (decl_stack_fns): fix top_of_* generated prototype. * tta/perl/Texinfo/Convert/Info.pm (output): set complete_header only if there are nodes. * tta/perl/Texinfo/Convert/Info.pm (output): do not add a new context when there are no nodes. * tta/C/convert/html_prepare_converter.c, tta/C/main/errors.c (fill_source_info_file): move fill_source_info_file to errors.c. * tta/C/convert/convert_to_info.c (open_info_file): pass encoded output file name back from open_info_file. Update caller. * tta/C/convert/convert_to_info.c (info_header): free result text. * tta/C/convert/convert_to_info.c (info_header, info_output): use stream_yield_result to get hold of the resulting string. * tta/C/convert/convert_to_info.c (info_output): set conversion, implement writing file without node.
Changed files
- ChangeLog
- tta/C/convert/convert_to_info.c
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/convert_to_plaintext.h
- tta/C/convert/converter.c
- tta/C/convert/html_prepare_converter.c
- tta/C/main/convert_utils.c
- tta/C/main/errors.c
- tta/C/main/errors.h
- tta/C/main/list_macros.h
- tta/perl/Texinfo/Convert/Info.pm
Change #276029
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Mon 27 Jul 2026 00:41:18 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision bf4e1c3cf0cb06c3b4cbf3a6f81d7a3e272ba258 Comments
Continue C info cinverter output implementation * tta/C/main/convert_utils.c (output_files_rename_opened): add. * tta/perl/Texinfo/Convert/Info.pm (_open_info_file, output): have _open_info_file return the encoded file name. Use that information to replace _register_closed_info_file by a simple call to output_files_register_closed. Add a variable for new output file and new encoded output filename. * tta/C/convert/convert_to_info.c (info_output): implement writing output units to files.
Changed files
- ChangeLog
- tta/C/convert/convert_to_info.c
- tta/C/convert/convert_to_plaintext.c
- tta/C/main/convert_utils.c
- tta/C/main/convert_utils.h
- tta/perl/Texinfo/Convert/Info.pm
Change #276044
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Mon 27 Jul 2026 09:37:11 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 727bc444d3bba5d52485af5ae1896a1ac64abcaf Comments
Finish C info converter output function except for node tags * tta/C/convert/convert_to_info.c (INDIRECT_FILE_OFFSET), INDIRECT_FILE_OFFSET_LIST, *indirect_files*: add indirect files lists types and functions. * tta/C/convert/convert_to_info.c (info_output): file indirect files list and output tag table with indirect tags file and local variables.
Changed files
- ChangeLog
- tta/C/convert/convert_to_info.c
Change #276117
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 27 Jul 2026 14:20:44 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision d297eefba22c826ab25266001564abde65e7d23d Comments
Use "$@" * util/texi2pdf, util/pdftexi2dvi: Replace use of ${1+"$@"} with "$@" and remove zsh workaround. ${1+"$@"} is no longer recommended as a workaround for ancient shells, as documented in the Autoconf 2.73 manual.Changed files
- ChangeLog
- util/pdftexi2dvi
- util/texi2pdf
Change #276118
Category texinfo Changed by Gavin Smith <gavinsmith0123@gmail.com> Changed at Mon 27 Jul 2026 14:20:44 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 4582e62b61e26a24e0d5550776f7c30fd9874687 Comments
Use "$@" * util/texi2dvi, Replace use of ${1+"$@"} with "$@".Changed files
- ChangeLog
- util/texi2dvi
Change #276208
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Mon 27 Jul 2026 23:34:18 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 62e92083a52c8523b98babdb67536043114147fe Comments
* tta/C/convert/convert_to_plaintext.c (convert_to_plaintext_internal): return immediately if a text type is ignored. * tta/C/main/element_types.txt (_code, _stop_upper_case) (_suppress_styles): add types used internally in plaintext converter. * tta/C/convert/convert_to_plaintext.c (plaintext_format_ref) (convert_to_plaintext_internal): add plaintext_format_ref and use in convert_to_plaintext_internal. * tta/perl/Texinfo/Convert/Info.pm (output): minor change to set encoding only if not empty, and use defined in conditions when the value is not used. * tta/perl/Texinfo/Convert/Plaintext.pm (format_ref): remove useless variable and reset target_element too (in code that cannot be called).
Changed files
- ChangeLog
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/converter.h
- tta/C/main/element_types.h
- tta/C/main/element_types.txt
- tta/C/main/translations.c
- tta/C/main/types_data.c
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Convert/Plaintext.pm
Change #276331
Category texinfo Changed by Patrice Dumas <pertusus@free.fr> Changed at Tue 28 Jul 2026 20:27:25 Repository https://git.savannah.gnu.org/git/texinfo.git Project texinfo Branch master Revision 1a287ccecae39c4b3c4dcd5dad6d8b9a92def834 Comments
Add dispatch for plaintext or Info specific functions, use for format_ref * tta/C/convert/converter.c (converter_format_data), tta/C/convert/converter.h (TXI_CONVERSION_FORMAT_NR), tta/C/main/converter_types.h (enum converter_format): start the list of converters by plaintext and info to make simpler using the same index to dispatch plaintext or info specific functions. * tta/C/convert/convert_to_plaintext.c (PLAINTEXT_FORMAT_FUNCTIONS) (plaintext_functions, convert_to_plaintext_internal): add dispatch table for formatting functions that are different for Info and plaintext output. Use it for format_ref. * tta/perl/Texinfo/Convert/Info.pm (format_ref): do not replace $args[0] by empty text, instead handle especially undefined $label_element. Move code around. Reorganize code to follow more the order of output and simplify a bit. * tta/C/convert/convert_to_info.c (info_format_ref), tta/C/main/plaintext_converter_state.h (PLAINTEXT_CONVERTER_STATE): add silent field in PLAINTEXT_CONVERTER_STATE. Implement most of info_format_ref.
Changed files
- ChangeLog
- tta/C/convert/convert_to_info.c
- tta/C/convert/convert_to_info.h
- tta/C/convert/convert_to_plaintext.c
- tta/C/convert/convert_to_plaintext.h
- tta/C/convert/converter.c
- tta/C/convert/converter.h
- tta/C/main/converter_types.h
- tta/C/main/plaintext_converter_state.h
- tta/C/main/utils.c
- tta/perl/Texinfo/Convert/Info.pm
- tta/perl/Texinfo/Convert/Plaintext.pm