texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * tp/tests/run_parser_all.sh (post_process_output


From: Gavin D. Smith
Subject: branch master updated: * tp/tests/run_parser_all.sh (post_process_output): Remove code stripping out lines with file names from output as we unconditionally use forward slash as the directory separator, so results should not be different on MS-Windows.
Date: Sun, 29 Dec 2024 17:47:12 -0500

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

gavin pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 28aac9cfa0 * tp/tests/run_parser_all.sh (post_process_output): Remove 
code stripping out lines with file names from output as we unconditionally use 
forward slash as the directory separator, so results should not be different on 
MS-Windows.
28aac9cfa0 is described below

commit 28aac9cfa05c68fcc73387d8d7e670000d054abf
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Sun Dec 29 22:46:57 2024 +0000

    * tp/tests/run_parser_all.sh (post_process_output):
    Remove code stripping out lines with file names from output
    as we unconditionally use forward slash as the directory separator,
    so results should not be different on MS-Windows.
---
 doc/texinfo-tex-test.texi | 9 +++++++--
 doc/texinfo.tex           | 9 +++++----
 2 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/doc/texinfo-tex-test.texi b/doc/texinfo-tex-test.texi
index f1eaed170a..ce6d90bdc0 100644
--- a/doc/texinfo-tex-test.texi
+++ b/doc/texinfo-tex-test.texi
@@ -489,6 +489,7 @@ Output should be doubled
 @end example
 @end macro
 
+
 x
 @Example
 aaagroff
@@ -589,14 +590,18 @@ II JJ @Mac
 
 KLM
 
-II JJ valueKLM
+II JJ value
+
+KLM
 
 KK LL @Mac
 
 
 MMM
 
-KK LL valueMMM
+KK LL value
+
+MMM
 
 @section @,c in macro argument
 
diff --git a/doc/texinfo.tex b/doc/texinfo.tex
index 97a589c898..780e79ab69 100644
--- a/doc/texinfo.tex
+++ b/doc/texinfo.tex
@@ -3,7 +3,7 @@
 % Load plain if necessary, i.e., if running under initex.
 \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
 %
-\def\texinfoversion{2024-11-04.20}
+\def\texinfoversion{2024-12-29.21}
 %
 % Copyright 1985, 1986, 1988, 1990-2024 Free Software Foundation, Inc.
 %
@@ -156,8 +156,9 @@
 % Give the space character the catcode for a space.
 \def\spaceisspace{\catcode`\ =10\relax}
 
-% Likewise for ^^M, the end of line character.
-\def\endlineisspace{\catcode13=10\relax}
+% Used to ignore an active newline that may appear immediately after
+% a macro name.
+{\catcode13=\active \gdef\ignoreactivenewline{\let^^M\empty}}
 
 \chardef\dashChar  = `\-
 \chardef\slashChar = `\/
@@ -8535,7 +8536,7 @@ might help (with 'rm \jobname.?? \jobname.??s')%
     \expandafter\xdef\csname\the\macname\endcsname{%
       \begingroup
         \noexpand\spaceisspace
-        \noexpand\endlineisspace
+        \noexpand\ignoreactivenewline
         \noexpand\expandafter % skip any whitespace after the macro name.
         \expandafter\noexpand\csname\the\macname @@@\endcsname}%
     \expandafter\xdef\csname\the\macname @@@\endcsname{%



reply via email to

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