Skip to content

Commit

Permalink
Gh311 support extended index (#1635)
Browse files Browse the repository at this point in the history
* fix for #311

* docu update

* drop extra letter in signature for \om@command@gobbled

* Apply suggestions from code review

Co-authored-by: Yukai Chou <[email protected]>

* dropping stray macrocode env

* renamed commands

* Apply suggestions from code review

Co-authored-by: Yukai Chou <[email protected]>

---------

Co-authored-by: Yukai Chou <[email protected]>
  • Loading branch information
FrankMittelbach and muzimuzhi authored Jan 23, 2025
1 parent 3976b03 commit adaa21f
Show file tree
Hide file tree
Showing 44 changed files with 168 additions and 9 deletions.
8 changes: 8 additions & 0 deletions base/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ to completeness or accuracy and it contains some references to files that are
not part of the distribution.
================================================================================

2025-01-21 Frank Mittelbach <[email protected]>

* ltoutput.dtx (subsection{Floats}):
Support extended syntax for \label, \index, and \glossary (gh/311)

* ltsect.dtx (subsection{Table of Contents etc.}):
Support extended syntax for \label, \index, and \glossary (gh/311)

2025-01-21 Joseph Wright <[email protected]>

* ltcmd.dtx:
Expand Down
16 changes: 16 additions & 0 deletions base/doc/ltnews41.tex
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,22 @@ \subsection{Supporting the \texttt{ssc} and \texttt{sw} shapes}
\githubissue{1581}


\subsection{Improving the handling of \cs{label}, \cs{index}, and \cs{glossary}}

In standard \LaTeX{}, the three commands \cs{label}, \cs{index}, and
\cs{glossary} take exactly one mandatory argument, e.g.,
\verb=\index{=\meta{entry}\verb=}=. In some extension packages, for
example, in \pkg{index} or \pkg{cleveref}, they are augmented to
accept an optional argument and in case of \cs{index} also a star
form. These extensions conflict with \LaTeX's way of disabling the
commands within the table of contents or within the running header,
because there, they were redefined to expect just a mandatory argument
and then do nothing. We have now changed that behavior so that the
redefinitions in these places accept an extended syntax.
%
\githubissue{311}


\section{Bug fixes}

\subsection{Fix the use of \texttt{localmathalpabets}}
Expand Down
10 changes: 6 additions & 4 deletions base/ltoutput.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
%%% From File: ltoutput.dtx
%<flafter>\ProvidesPackage{flafter}
%<fltrace>\ProvidesPackage{fltrace}
%<flafter,fltrace> [2024/11/16 v1.4k
%<flafter,fltrace> [2025/01/21 v1.4l
%<flafter> Standard LaTeX floats after reference (FMi)]
%<fltrace> Tracing LaTeX floats algorithm (FMi)]
%
Expand Down Expand Up @@ -2199,10 +2199,12 @@
% Reset these here (previously reset separately for head and foot)
% \changes{v1.2b}{1997/04/14}
% {Move \cs{label} and \cs{index} (from patch file)}
% \changes{v1.4l}{2025/01/21}{Support extended syntax
% for \cs{label}, \cs{index}, and \cs{glossary} (gh/311)}
% \begin{macrocode}
\let\label\@gobble
\let\index\@gobble
\let\glossary\@gobble
\let\label\@gobble@om
\let\index\@gobble@som
\let\glossary\@gobble@om
% \end{macrocode}
%
% \begin{macrocode}
Expand Down
57 changes: 52 additions & 5 deletions base/ltsect.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
%%% From File: ltsect.dtx
%<*driver>
% \fi
\ProvidesFile{ltsect.dtx}[2024/11/28 v1.1f LaTeX Kernel (Sectioning)]
\ProvidesFile{ltsect.dtx}[2025/01/21 v1.1g LaTeX Kernel (Sectioning)]
% \iffalse
\documentclass{ltxdoc}
\GetFileInfo{ltsect.dtx}
Expand Down Expand Up @@ -815,20 +815,67 @@
% \end{macrocode}
% \end{macro}
%
% \changes{v1.0c}{1994/05/20}{Correct setting of \cs{protect}.}
% \changes{v1.0h}{1994/11/04}{Added \cs{protected@write} to
% \cs{addtocontents}. ASAJ.}
%
%
%
%
% \begin{macro}{\@gobble@om,\@gobble@som}
% Two commands that accept an optional and a mandatory argument or
% a star, optional and mandatory argument and then do nothing. Used
% to disable commands such as \cs{index} in certain situations.
% \changes{v1.1g}{2025/01/21}
% {Support extended syntax for \cs{label}, \cs{index} and \cs{glossary} (gh/311)}
% \begin{macrocode}
%</2ekernel>
%<*2ekernel|latexrelease>
%<latexrelease>\IncludeInRelease{2025/06/01}%
%<latexrelease> {\@gobble@som}{Extended index/label}%
% \end{macrocode}
%
% \begin{macrocode}
\DeclareExpandableDocumentCommand\@gobble@om{+o+m}{}
\DeclareExpandableDocumentCommand\@gobble@som{s+o+m}{}
% \end{macrocode}
% \end{macro}
%
%
%
%
%
% \begin{macro}{\addtocontents}
%
% The |\addtocontents{|\meta{table}|}{|\meta{text}|}| command
% adds \meta{text} to the |.|\meta{table} file, with no
% page number.
%
% \changes{v1.0c}{1994/05/20}{Correct setting of \cs{protect}.}
% \changes{v1.0h}{1994/11/04}{Added \cs{protected@write} to
% \cs{addtocontents}. ASAJ.}
% \changes{v1.1g}{2025/01/21}{Support extended syntax
% for \cs{label}, \cs{index}, and \cs{glossary} (gh/311)}
% \begin{macrocode}
\long\def\addtocontents#1#2{%
\protected@write\@auxout
{\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}%
{\let\label\@gobble@om
\let\index\@gobble@som
\let\glossary\@gobble@om}%
{\string\@writefile{#1}{#2}}}
%</2ekernel|latexrelease>
%<latexrelease>\EndIncludeInRelease
% \end{macrocode}
%
% \begin{macrocode}
%<latexrelease>\IncludeInRelease{0000/00/00}%
%<latexrelease> {\@gobble@som}{Extended index/label}%
%<latexrelease>\long\def\addtocontents#1#2{%
%<latexrelease> \protected@write\@auxout
%<latexrelease> {\let\label\@gobble \let\index\@gobble \let\glossary\@gobble}%
%<latexrelease> {\string\@writefile{#1}{#2}}}
%<latexrelease>
%<latexrelease>\let\@gobble@om\@undefined
%<latexrelease>\let\@gobble@som\@undefined
%<latexrelease>\EndIncludeInRelease
%<*2ekernel>
% \end{macrocode}
% \end{macro}
%
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles-lthooks/lthooks-rollback-args.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/github-0479-often.luatex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/github-0479-often.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/github-0479-often.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
4 changes: 4 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,8 @@ Applying: [....-..-..] Make commands robust on input line ....
Skipping: [....-..-..] fourth argument on input line ....
Skipping: [....-..-..] Mask line endings on input line ....
Applying: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Skipping: [....-..-..] Prevent protrusion on input line ....
Expand Down Expand Up @@ -1574,6 +1576,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Skipping: [....-..-..] fourth argument on input line ....
Applying: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
4 changes: 4 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-003-often.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,8 @@ Applying: [....-..-..] Make commands robust on input line ....
Skipping: [....-..-..] fourth argument on input line ....
Skipping: [....-..-..] Mask line endings on input line ....
Applying: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Skipping: [....-..-..] Prevent protrusion on input line ....
Expand Down Expand Up @@ -1558,6 +1560,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Skipping: [....-..-..] fourth argument on input line ....
Applying: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
4 changes: 4 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,8 @@ Applying: [....-..-..] Make commands robust on input line ....
Skipping: [....-..-..] fourth argument on input line ....
Skipping: [....-..-..] Mask line endings on input line ....
Applying: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Skipping: [....-..-..] Prevent protrusion on input line ....
Expand Down Expand Up @@ -1567,6 +1569,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Skipping: [....-..-..] fourth argument on input line ....
Applying: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Skipping: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
2 changes: 2 additions & 0 deletions base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,8 @@ Already applied: [....-..-..] Make commands robust on input line ....
Applying: [....-..-..] fourth argument on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Already applied: [....-..-..] Mask line endings on input line ....
Skipping: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Extended index/label on input line ....
Applying: [....-..-..] Four arguments on input line ....
Already applied: [....-..-..] Four arguments on input line ....
Applying: [....-..-..] Prevent protrusion on input line ....
Expand Down
Loading

0 comments on commit adaa21f

Please sign in to comment.