summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-09-26 21:29:47 +0000
committerKarl Berry <karl@freefriends.org>2019-09-26 21:29:47 +0000
commit55ebe908bad0458f7ce558436de34780045e5a5f (patch)
treeb370b5a2ea37954a53e1bf78d307fb4af3bcf15e
parentc909c2b26109b8e71e2eeb5023939e084b7c0a2c (diff)
remove lualatex tweaks no longer used, per joseph wright
git-svn-id: svn://tug.org/texlive/trunk@52181 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf-dist/tex/latex/latexconfig/lualatex-patch-kernel.tex26
-rw-r--r--Master/texmf-dist/tex/latex/latexconfig/lualatex-reset-codes.tex33
2 files changed, 0 insertions, 59 deletions
diff --git a/Master/texmf-dist/tex/latex/latexconfig/lualatex-patch-kernel.tex b/Master/texmf-dist/tex/latex/latexconfig/lualatex-patch-kernel.tex
deleted file mode 100644
index eee38bb8b79..00000000000
--- a/Master/texmf-dist/tex/latex/latexconfig/lualatex-patch-kernel.tex
+++ /dev/null
@@ -1,26 +0,0 @@
-% $Id: lualatexquotejobname.tex 18968 2010-06-14 11:22:59Z mpg $
-% Manuel Pegourie-Gonnard, originally written 2010. WTFPL v2.
-%
-% Misc. patches to commands in the LaTeX kernel for LuaTeX.
-
-\makeatletter
-
-% \endlinechar must always be < 127
-%
-% mpg: this was the only occurence of such an assignement in the kernel
-% (checked \newlinechar too)
-%
-% mpg: the +10000/-10000 breaks, and we want to avoid munging
-% \@tempcnta globally, so use a group with a few \expandafter's
-\def\@xtypein[#1]#2{%
- \typeout{#2}%
- %%\advance\endlinechar\@M
- \begingroup \endlinechar\m@ne
- \read\@inputcheck to#1%
- \expandafter\endgroup
- \expandafter\def\expandafter#1\expandafter{#1}%
- %%\advance\endlinechar-\@M
- \@typein}
-
-\makeatother
-\endinput
diff --git a/Master/texmf-dist/tex/latex/latexconfig/lualatex-reset-codes.tex b/Master/texmf-dist/tex/latex/latexconfig/lualatex-reset-codes.tex
deleted file mode 100644
index cbee05cba09..00000000000
--- a/Master/texmf-dist/tex/latex/latexconfig/lualatex-reset-codes.tex
+++ /dev/null
@@ -1,33 +0,0 @@
-% $Id $
-% Manuel Pégourié-Gonnard, originally written 2010. WTFPL v2.
-
-% To be loaded after latex.ltx and before luatex-unicode-letters.tex.
-
-% latex.ltx (ltfinal.dtx) sets lccodes, uccodes, sfcodes and catcodes for
-% characters in the "00-"ff range.
-%
-% In the "80-"ff range, lccodes, uccodes & sfcodes are based on T1, and need
-% to be reset before the correct, Unicode-based, codes are set. Also, the
-% catcodes are set to 12 (other).
-%
-\begingroup
-\makeatletter
-\count@=128
-\loop \ifnum\count@<256
- \global\uccode\count@=0
- \global\lccode\count@=0
- \global\sfcode\count@=1000
- \global\catcode\count@=12
- \advance\count@\@ne
-\repeat
-\endgroup
-
-% A few codes in the ASCII range are set by latex.ltx:
-%
-% \lccode`\^^[=`\^^[ % oe in OT1
-% \lccode`\- =`\- % default hyphen char
-% \lccode 127=127 % alternate hyphen char
-% \lccode 23 =23 % textcompwordmark in T1
-%
-% They don't look too problematic, so we don't reset them now, but this may
-% change later if problems are found.