diff options
Diffstat (limited to 'Master/texmf-dist/source/latex-dev/base/ltfssini.dtx')
-rw-r--r-- | Master/texmf-dist/source/latex-dev/base/ltfssini.dtx | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/Master/texmf-dist/source/latex-dev/base/ltfssini.dtx b/Master/texmf-dist/source/latex-dev/base/ltfssini.dtx index 61d0a793a07..fbea725c1df 100644 --- a/Master/texmf-dist/source/latex-dev/base/ltfssini.dtx +++ b/Master/texmf-dist/source/latex-dev/base/ltfssini.dtx @@ -36,7 +36,7 @@ % % \ProvidesFile{ltfssini.dtx} - [2020/08/27 v3.2c LaTeX Kernel (NFSS Initialisation)] + [2020/10/08 v3.2e LaTeX Kernel (NFSS Initialisation)] % \iffalse \documentclass{ltxdoc} \begin{document} @@ -800,7 +800,7 @@ % \begin{macrocode} \expand@font@defaults % \end{macrocode} -% If \cs{bfdefault} and \cs{befdefault@previous} are different then +% If \cs{bfdefault} and \cs{bfdefault@previous} are different then % the default got changed directly through the legacy interface % (i.e., via \cs{def} or \cs{renewcommand}. In that case we reset % all meta family defaults so that the document behaves like it was @@ -812,10 +812,12 @@ % \end{macrocode} % We add \cs{@empty} and then let \cs{bfdefault@previous} to % \cs{bfdefault} so that we can detect any further change. +% \changes{v3.2d}{2020/09/30}{\cs{bfdefault@previous} not \cs{bfseries@previous} +% (gh/395)} % \begin{macrocode} \expandafter\def\expandafter\bfdefault \expandafter{\bfdefault\@empty}% - \let\bfseries@previous\bfdefault + \let\bfdefault@previous\bfdefault % \end{macrocode} % And we reset the meta family defaults (\cs{bfdef@ult} is an % expanded version of \cs{bfdefault}. @@ -861,13 +863,15 @@ % of \cs{fontseries} argument so that it is not done several times} % \changes{v3.1k}{2020/03/19}{Support legacy use of \cs{bfdefault} % and \cs{mddefault} (gh/306)} +% \changes{v3.2d}{2020/09/30}{\cs{mddefault@previous} not \cs{mdseries@previous} +% (gh/395)} % \begin{macrocode} \DeclareRobustCommand\mdseries{% \not@math@alphabet\mdseries\relax \expand@font@defaults \ifx\mddefault\mddefault@previous\else \expandafter\def\expandafter\mddefault\expandafter{\mddefault\@empty}% - \let\mdseries@previous\mddefault + \let\mddefault@previous\mddefault \let\mdseries@rm\mddef@ult \let\mdseries@sf\mddef@ult \let\mdseries@tt\mddef@ult @@ -1066,17 +1070,23 @@ % \begin{macro}{\@rmfamilyhook} % \begin{macro}{\@sffamilyhook} % \begin{macro}{\@ttfamilyhook} +% \begin{macro}{\@defaultfamilyhook} +% \changes{v3.1h}{2020/02/10}{Add \cs{@defaultfamilyhook} to \cs{normalfont} (gh/269)} % These four hooks have legacy versions used in 2020/02/02 so we % should support them until they aren't any longer used. +% +% By default the hooks do nothing. % \begin{macrocode} \let\@rmfamilyhook\@empty \let\@sffamilyhook\@empty \let\@ttfamilyhook\@empty -\let\@defaulfamilyhook\@empty +\let\@defaultfamilyhook\@empty %FMi sort out % \end{macrocode} % \end{macro} % \end{macro} % \end{macro} +% \end{macro} +% % % \begin{macrocode} %</2ekernel|latexrelease> @@ -1783,13 +1793,6 @@ % \end{macro} % % -% \begin{macro}{\@defaultfamilyhook} -% By default the hooks do nothing. -% \changes{v3.1h}{2020/02/10}{Add \cs{@defaultfamilyhook} to \cs{normalfont} (gh/269)} -% \begin{macrocode} -\let\@defaultfamilyhook\@empty %FMi sort out -% \end{macrocode} -% \end{macro} % % \begin{macrocode} %</2ekernel|latexrelease> |