diff options
author | Karl Berry <karl@freefriends.org> | 2015-10-12 22:45:39 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-10-12 22:45:39 +0000 |
commit | bb3578641d00574ac8f3ccc81d08a11005da255b (patch) | |
tree | 23632464b0445a03313f46da195bdd2e2089c671 /Master/texmf-dist/tex/latex/latexconfig/dvilualatex.ini | |
parent | 98f1f46eb83fd925943d70923b53bd3ce785565a (diff) |
From Akira: in LuaTeX 0.81.1, primitives \pdfpage{width,height} are
renamed to \page{width,height}, and also reclassified from pdftex to
luatex. So:
* pdftexconfig.tex: check and set \luatexpage{width,height} as well as
\pdfpage{width,height} and \page{width,height}, just for completeness.
* lualatex.ini,
* dvilualatex.ini: enable luatex primitives so pdftexconfig.tex can set
them, and enable etex primitives to work with current latex.ltx.
* luatexiniconfig.tex: doc changes only.
git-svn-id: svn://tug.org/texlive/trunk@38623 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/latexconfig/dvilualatex.ini')
-rw-r--r-- | Master/texmf-dist/tex/latex/latexconfig/dvilualatex.ini | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Master/texmf-dist/tex/latex/latexconfig/dvilualatex.ini b/Master/texmf-dist/tex/latex/latexconfig/dvilualatex.ini index 2e81233ee41..27678c42859 100644 --- a/Master/texmf-dist/tex/latex/latexconfig/dvilualatex.ini +++ b/Master/texmf-dist/tex/latex/latexconfig/dvilualatex.ini @@ -1,15 +1,16 @@ % $Id$ % Originally written 2008 by Karl Berry. Public domain. -% same as lualatex.ini (extra comments there) except for \pdfoutput=0. +% Except for \pdfoutput=0, same as lualatex.ini (extra comments there). +% That is, changes here must also go into lualatex.ini. \begingroup - \catcode`\{=1 % - \catcode`\}=2 % - \directlua{tex.enableprimitives('',tex.extraprimitives('pdftex'))} + \catcode`\{=1 + \catcode`\}=2 + \directlua{tex.enableprimitives('', + tex.extraprimitives('pdftex', 'etex', 'luatex'))} \global\everyjob{\directlua{require("lualatexquotejobname.lua")}} \endgroup -% settings inherited from pdftex \input pdftexconfig.tex \pdfoutput=0 % dvi output by default |