summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-03-01 21:04:55 +0000
committerKarl Berry <karl@freefriends.org>2023-03-01 21:04:55 +0000
commitf7aa47a6cedfc0d108180bd79b82eea1f347db44 (patch)
tree9c698f94ec5e4fd21c9003f865e44cb79502f0aa /Master/texmf-dist/scripts
parent97033e6cc2c1a29821fb8101891bd4fde386e925 (diff)
lyluatex (1mar23)
git-svn-id: svn://tug.org/texlive/trunk@66278 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