summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua')
-rw-r--r--Master/texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua25
1 files changed, 14 insertions, 11 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua
index 45397189d0f..004d4b1b249 100644
--- a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua
+++ b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua
@@ -1,21 +1,24 @@
-#!/usr/bin/env texlua
-------------------------------------------------------------------------------
-- FILE: luaotfload-configuration.lua
--- DESCRIPTION: config file reader
--- REQUIREMENTS: Luaotfload 2.9 or above
+-- DESCRIPTION: part of luaotfload / luaotfload-tool / config file reader
-- AUTHOR: Philipp Gesang, <phg@phi-gamma.net>
-- AUTHOR: Dohyun Kim <nomosnomos@gmail.com>
-------------------------------------------------------------------------------
---
-
-if not modules then modules = { } end modules ["luaotfload-configuration"] = {
- version = "2.91",
- comment = "part of Luaotfload",
- author = "Philipp Gesang, Dohyun Kim",
- copyright = "Luaotfload Development Team",
- license = "GNU GPL v2.0"
+
+local ProvidesLuaModule = {
+ name = "luaotfload-configuration",
+ version = "2.93", --TAGVERSION
+ date = "2018-10-28", --TAGDATE
+ description = "luaotfload submodule / config file reader",
+ license = "GPL v2.0"
}
+if luatexbase and luatexbase.provides_module then
+ luatexbase.provides_module (ProvidesLuaModule)
+end
+
+------------------------------
+
local status_file = "luaotfload-status"
local luaotfloadstatus = require (status_file)