texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * tp/Texinfo/XS/parsetexi/parser.c (process_remai


From: Patrice Dumas
Subject: branch master updated: * tp/Texinfo/XS/parsetexi/parser.c (process_remaining_on_line): remove index entry commands from the list of commands that do not start paragraphs in the check before calling begin_paragraph.
Date: Sat, 18 Feb 2023 13:29:40 -0500

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 8b8fb918ed * tp/Texinfo/XS/parsetexi/parser.c 
(process_remaining_on_line): remove index entry commands from the list of 
commands that do not start paragraphs in the check before calling 
begin_paragraph.
8b8fb918ed is described below

commit 8b8fb918ed3e7934855bec55059ee572e21ccab1
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sat Feb 18 19:29:34 2023 +0100

    * tp/Texinfo/XS/parsetexi/parser.c (process_remaining_on_line):
    remove index entry commands from the list of commands that do not
    start paragraphs in the check before calling begin_paragraph.
---
 ChangeLog                        | 6 ++++++
 tp/Texinfo/XS/parsetexi/parser.c | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 1a1e8bbf90..939a2cf45b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2023-02-18  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/XS/parsetexi/parser.c (process_remaining_on_line):
+       remove index entry commands from the list of commands that do not
+       start paragraphs in the check before calling begin_paragraph.
+
 2023-02-18  Gavin Smith <gavinsmith0123@gmail.com>
 
        * tp/Texinfo/ParserNonXS.pm (_end_line_def_line):
diff --git a/tp/Texinfo/XS/parsetexi/parser.c b/tp/Texinfo/XS/parsetexi/parser.c
index 3061a77b80..bb8502d433 100644
--- a/tp/Texinfo/XS/parsetexi/parser.c
+++ b/tp/Texinfo/XS/parsetexi/parser.c
@@ -2095,8 +2095,7 @@ process_remaining_on_line (ELEMENT **current_inout, char 
**line_inout)
             || cmd == CM_ASTERISK /* @* */
             || cmd == CM_hyphenation
             || cmd == CM_anchor
-            || cmd == CM_errormsg
-            || (command_data(cmd).flags & CF_index_entry_command)))
+            || cmd == CM_errormsg))
         {
           ELEMENT *paragraph;
           paragraph = begin_paragraph (current);



reply via email to

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