summaryrefslogtreecommitdiff
path: root/support/lyluatex/lyluatex.lua
diff options
context:
space:
mode:
Diffstat (limited to 'support/lyluatex/lyluatex.lua')
-rw-r--r--support/lyluatex/lyluatex.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/support/lyluatex/lyluatex.lua b/support/lyluatex/lyluatex.lua
index b6188b71d6..c67613b3b5 100644
--- a/support/lyluatex/lyluatex.lua
+++ b/support/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