summaryrefslogtreecommitdiff
path: root/src/luaotfload.sty
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2015-11-22 00:11:07 +0100
committerPhilipp Gesang <phg@phi-gamma.net>2015-11-22 00:11:07 +0100
commit8e66c317251ad8efcfef34a40ac747435e37ed29 (patch)
tree323a00fa52b2d809a1f8a46537870da9d8429c43 /src/luaotfload.sty
parent6c3d70e21b100c6c7ffa11e1c6d9260b32ccc781 (diff)
parent7c6bf5503a31142a91f4414d2f5ef4e6b0baed46 (diff)
downloadluaotfload-8e66c317251ad8efcfef34a40ac747435e37ed29.tar.gz
Merge pull request #287 from davidcarlisle/master
Patch to just load ltluatex, not luatexbase
Diffstat (limited to 'src/luaotfload.sty')
-rw-r--r--src/luaotfload.sty18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/luaotfload.sty b/src/luaotfload.sty
index ec62dad..1b31b1d 100644
--- a/src/luaotfload.sty
+++ b/src/luaotfload.sty
@@ -33,17 +33,17 @@
%%
\csname ifluaotfloadloaded\endcsname
\let\ifluaotfloadloaded\endinput
-\bgroup\expandafter\expandafter\expandafter\egroup
-\expandafter\ifx\csname selectfont\endcsname\relax
- \input luatexbase.sty
-\else
- \NeedsTeXFormat{LaTeX2e}
+\ifx\newluafunction\@undefined
+ \input ltluatex
+\fi
+\ifdefined\ProvidesPackage
\ProvidesPackage{luaotfload}%
%% FIXME The date is meaningless, we need to find a way to
%% use the git revision instead.
- [2015/03/29 v2.6 OpenType layout system]
- \RequirePackage{luatexbase}
+ [2015/03/29 v2.6 OpenType layout system]
\fi
-\RequireLuaModule{luaotfload-main}
-\directlua{local _void = luaotfload.main ()}
+\directlua{
+require('luaotfload-main')
+local _void = luaotfload.main ()
+}