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 1 commit
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>
Copy link
Contributor

Choose a reason for hiding this comment

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

space before email address for consistency I guess

Copy link
Member

Choose a reason for hiding this comment

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

The 2 spaces in front of my name or David's name are automatically placed there by the workflow we use in emacs (pressing C-c c and getting most of the line autoinserted in the right changes file), so removing it for consistency is probably counterproductive as 99% of the changes (at the moment are done by us 2 :-). So I would rather add a space in front of Ulrike's name if we care about consistency

Copy link
Contributor

Choose a reason for hiding this comment

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

Yep, that's kind of what I meant although I missed there were two spaces :)
Ulrike has now added a space before her address

Copy link
Member

Choose a reason for hiding this comment

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

Well, she added one after her name but removed the second space(s) from the line with my name. Not that it matters to me, I was just explaining that whenever I generate such a line it will have those spaces in as they are auto-generated

Copy link
Member Author

Choose a reason for hiding this comment

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

@FrankMittelbach yes, sorry, some "autocorrecting space stuff" from my editor kicked in (that was also what remove the one trailing space later one), but I didn't really realize that it would remove spaces when I touch the line. I readded both now.


* 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