summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-03-01 21:05:50 +0000
committerKarl Berry <karl@freefriends.org>2023-03-01 21:05:50 +0000
commit6a4c03359874a7856a3c63585eccdb1f78b534e3 (patch)
tree044f1b7be20a8cfdb308a9c7ab15b2591e0780ce /Master/texmf-dist/scripts
parent0cf91e7f900241ede3f444c1132751bbb541f319 (diff)
lyluatex (1mar23) (branch)
git-svn-id: svn://tug.org/texlive/branches/branch2022.final@66280 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-xMaster/texmf-dist/scripts/lyluatex/lyluatex.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/lyluatex/lyluatex.lua b/Master/texmf-dist/scripts/lyluatex/lyluatex.lua
index b6188b71d6b..c67613b3b54 100755
--- a/Master/texmf-dist/scripts/lyluatex/lyluatex.lua
+++ b/Master/texmf-dist/scripts/lyluatex/lyluatex.lua
@@ -1,11 +1,11 @@
-- luacheck: ignore ly log self luatexbase internalversion font fonts tex token kpse status ly_opts
local err, warn, info, log = luatexbase.provides_module({
name = "lyluatex",
- version = '1.1.2', --LYLUATEX_VERSION
- date = "2022/12/21", --LYLUATEX_DATE
+ version = '1.1.3', --LYLUATEX_VERSION
+ date = "2023/03/01", --LYLUATEX_DATE
description = "Module lyluatex.",
author = "The Gregorio Project − (see Contributors.md)",
- copyright = "2015-2022 - jperon and others",
+ copyright = "2015-2023 - jperon and others",
license = "MIT",
})
@@ -106,10 +106,11 @@ end
local function extract_includepaths(includepaths)
includepaths = includepaths:explode(',')
+ local cfd
if lib.tex_engine.dist == 'MiKTeX' then
- local cfd = Score.currfiledir:gsub('^$', '.\\')
+ cfd = Score.currfiledir:gsub('^$', '.\\')
else
- local cfd = Score.currfiledir:gsub('^$', './')
+ cfd = Score.currfiledir:gsub('^$', './')
end
table.insert(includepaths, 1, cfd)
@@ -134,7 +135,6 @@ local function includes_parse(list)
]]
list = list:explode(',')
for _, included_file in ipairs(list) do
- warn(included_file)
includes = includes .. '\\include "'..included_file..'.ly"\n'
end
end