Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correct unicode value of \=y #326

Merged
merged 3 commits into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion base/changes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
2020-04-21 Frank Mittelbach <Frank.Mittelbach@latex-project.org>
2020-04-22 Ulrike Fischer <Ulrike.Fischer@latex-project.org>

* ltoutenc.dtx (tuenc.def):
corrected unicode value of \=y from "0232 to "0233

2020-04-21 Frank Mittelbach <Frank.Mittelbach@latex-project.org>

* ltspace.dtx (subsection{Horizontal space (and breaks)}):
Support calc syntax with \hspace (gh/152)
Expand Down
10 changes: 6 additions & 4 deletions base/ltoutenc.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
%<TS1>\ProvidesFile{ts1enc.def}[2001/06/05 v3.0e (jk/car/fm)
%<TU>\ProvidesFile{tuenc.def}
%<package>\ProvidesPackage{fontenc}
%<OT1|T1|OMS|OML|OT4|TU|package> [2020/02/11 v2.0o
%<OT1|T1|OMS|OML|OT4|TU|package> [2020/04/22 v2.0p
%<OT1|T1|OMS|OML|OT4|TS1|TU> Standard LaTeX file]
%<package> Standard LaTeX package]
%
%<*driver>
% \fi
\ProvidesFile{ltoutenc.dtx}
[2020/02/11 v2.0o LaTeX Kernel (font encodings)]
[2020/04/22 v2.0p LaTeX Kernel (font encodings)]
% \iffalse
\documentclass{ltxdoc}
\GetFileInfo{ltoutenc.dtx}
Expand Down Expand Up @@ -188,6 +188,8 @@
% like.}
% \changes{v1.99m}{2015/02/21}
% {Removed autoload code}
% \changes{v2.0p}{2020/04/22}
% {corrected \=y unicode value in tuenc.def}
%
%
% \section{Font encodings}
Expand Down Expand Up @@ -3370,7 +3372,7 @@
\DeclareUnicodeComposite{\textcommabelow}{T}{"021A}
\DeclareUnicodeComposite{\textcommabelow}{t}{"021B}
\DeclareUnicodeComposite{\=} {Y}{"0232}
\DeclareUnicodeComposite{\=} {y}{"0232}
\DeclareUnicodeComposite{\=} {y}{"0233}
\DeclareUnicodeComposite{\.} {B}{"1E02}
\DeclareUnicodeComposite{\.} {b}{"1E03}
\DeclareUnicodeComposite{\d} {B}{"1E04}
Expand Down Expand Up @@ -3601,7 +3603,7 @@
\xdef\@fontenc@load@list{\@fontenc@load@list
\@elt{\csname opt@fontenc.sty\endcsname}}
% \end{macrocode}
%
%
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for including this -- we should purge all trailing whitespace! :)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm. I don't think that it was me, so either git or windows should get the praise.

% \begin{macrocode}
\global\expandafter\let\csname ver@fontenc.sty\endcsname\relax
\global\expandafter\let\csname opt@fontenc.sty\endcsname\relax
Expand Down