texlive[76002] trunk: latexindex (8aug25)

commits+karl at tug.org commits+karl at tug.org
Fri Aug 8 23:33:27 CEST 2025


Revision: 76002
          https://tug.org/svn/texlive?view=revision&revision=76002
Author:   karl
Date:     2025-08-08 23:33:26 +0200 (Fri, 08 Aug 2025)
Log Message:
-----------
latexindex (8aug25)

Modified Paths:
--------------
    trunk/Build/source/texk/texlive/linked_scripts/latexindent/latexindent.pl
    trunk/Master/bin/windows/latexindent.exe
    trunk/Master/texmf-dist/doc/support/latexindent/README
    trunk/Master/texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json
    trunk/Master/texmf-dist/doc/support/latexindent/latexindent.pdf
    trunk/Master/texmf-dist/scripts/latexindent/LatexIndent/AlignmentAtAmpersand.pm
    trunk/Master/texmf-dist/scripts/latexindent/LatexIndent/Version.pm
    trunk/Master/texmf-dist/scripts/latexindent/defaultSettings.yaml
    trunk/Master/texmf-dist/scripts/latexindent/latexindent.pl

Modified: trunk/Build/source/texk/texlive/linked_scripts/latexindent/latexindent.pl
===================================================================
(Binary files differ)

Modified: trunk/Master/bin/windows/latexindent.exe
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/support/latexindent/README
===================================================================
--- trunk/Master/texmf-dist/doc/support/latexindent/README	2025-08-07 23:42:37 UTC (rev 76001)
+++ trunk/Master/texmf-dist/doc/support/latexindent/README	2025-08-08 21:33:26 UTC (rev 76002)
@@ -1,5 +1,5 @@
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-    latexindent.pl, version 3.24.5, 2025-03-13
+    latexindent.pl, version 3.24.6, 2025-08-08
 
     PERL script to indent code within environments, and align delimited 
     environments in .tex files.

Modified: trunk/Master/texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json
===================================================================
--- trunk/Master/texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json	2025-08-07 23:42:37 UTC (rev 76001)
+++ trunk/Master/texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json	2025-08-08 21:33:26 UTC (rev 76002)
@@ -2,7 +2,7 @@
   "$schema": "http://json-schema.org/schema",
   "$id": "latexindent-yaml-schema.json",
   "title": "latexindent.pl YAML schema",
-  "description": "latexindent.pl YAML schema helper, V3.24.5 2025-03-13",
+  "description": "latexindent.pl YAML schema helper, V3.24.6 2025-08-08",
   "type": "object",
   "properties": {
     "fileExtensionPreference": {

Modified: trunk/Master/texmf-dist/doc/support/latexindent/latexindent.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/scripts/latexindent/LatexIndent/AlignmentAtAmpersand.pm
===================================================================
--- trunk/Master/texmf-dist/scripts/latexindent/LatexIndent/AlignmentAtAmpersand.pm	2025-08-07 23:42:37 UTC (rev 76001)
+++ trunk/Master/texmf-dist/scripts/latexindent/LatexIndent/AlignmentAtAmpersand.pm	2025-08-08 21:33:26 UTC (rev 76002)
@@ -762,7 +762,7 @@
                 #         dontMeasure:
                 #           -
                 #               this: \multicolumn{1}{c}{Expiry}
-                next if ( defined ${$_}{applyTo} and !${$_}{applyTo} eq "cell" );
+                next if ( defined ${$_}{applyTo} and ${$_}{applyTo} ne "cell" );
                 $logger->trace("CELL FOUND (this): ${$_}{this} and will not be measured") if ($is_t_switch_active);
                 ${ $cellStorage[ $input{row} ][ $input{column} ] }{measureThis} = 0;
                 ${ $cellStorage[ $input{row} ][ $input{column} ] }{type}        = "X";
@@ -785,7 +785,7 @@
                 #         dontMeasure:
                 #           -
                 #               regex: \multicolumn{1}{c}{Expiry}
-                next if ( defined ${$_}{applyTo} and !${$_}{applyTo} eq "cell" );
+                next if ( defined ${$_}{applyTo} and ${$_}{applyTo} ne "cell" );
                 my $regex = qr/${$_}{regex}/;
                 next unless ${ $cellStorage[ $input{row} ][ $input{column} ] }{entry} =~ m/${$_}{regex}/;
                 $logger->trace("CELL FOUND (regex): ${$_}{regex} and will not be measured") if ($is_t_switch_active);

Modified: trunk/Master/texmf-dist/scripts/latexindent/LatexIndent/Version.pm
===================================================================
--- trunk/Master/texmf-dist/scripts/latexindent/LatexIndent/Version.pm	2025-08-07 23:42:37 UTC (rev 76001)
+++ trunk/Master/texmf-dist/scripts/latexindent/LatexIndent/Version.pm	2025-08-08 21:33:26 UTC (rev 76002)
@@ -20,6 +20,6 @@
 use Exporter qw/import/;
 our @EXPORT_OK = qw/$versionNumber $versionDate/;
 
-our $versionNumber = '3.24.5';
-our $versionDate   = '2025-03-13';
+our $versionNumber = '3.24.6';
+our $versionDate   = '2025-08-08';
 1

Modified: trunk/Master/texmf-dist/scripts/latexindent/defaultSettings.yaml
===================================================================
--- trunk/Master/texmf-dist/scripts/latexindent/defaultSettings.yaml	2025-08-07 23:42:37 UTC (rev 76001)
+++ trunk/Master/texmf-dist/scripts/latexindent/defaultSettings.yaml	2025-08-08 21:33:26 UTC (rev 76002)
@@ -1,5 +1,5 @@
 #
-# latexindent.pl, version 3.24.5, 2025-03-13
+# latexindent.pl, version 3.24.6, 2025-08-08
 #
 # defaultSettings.yaml, the default settings for latexindent.pl
 #

Modified: trunk/Master/texmf-dist/scripts/latexindent/latexindent.pl
===================================================================
(Binary files differ)



More information about the tex-live-commits mailing list.