summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/l3build/l3build-help.lua
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-05-06 03:00:58 +0000
committerNorbert Preining <norbert@preining.info>2021-05-06 03:00:58 +0000
commit25f20b6d8ccd4edcdfec23c1a3c908516076ee06 (patch)
treef889e071118d7d2db80066d14d14b020c50a2238 /macros/latex/contrib/l3build/l3build-help.lua
parent75db33dc347ec9cfbaa2f3ec538a2697351f571b (diff)
CTAN sync 202105060300
Diffstat (limited to 'macros/latex/contrib/l3build/l3build-help.lua')
-rw-r--r--macros/latex/contrib/l3build/l3build-help.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/macros/latex/contrib/l3build/l3build-help.lua b/macros/latex/contrib/l3build/l3build-help.lua
index 055fc1a918..6431ac547e 100644
--- a/macros/latex/contrib/l3build/l3build-help.lua
+++ b/macros/latex/contrib/l3build/l3build-help.lua
@@ -1,6 +1,6 @@
--[[
-File l3build-help.lua Copyright (C) 2018,2020 The LaTeX3 Project
+File l3build-help.lua Copyright (C) 2018,2020 The LaTeX Project
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -32,14 +32,14 @@ function version()
"\n" ..
"l3build: A testing and building system for LaTeX\n\n" ..
"Release " .. release_date .. "\n" ..
- "Copyright (C) 2014-2020 The LaTeX3 Project"
+ "Copyright (C) 2014-2020 The LaTeX Project"
)
end
function help()
local function setup_list(list)
local longest = 0
- for k,v in pairs(list) do
+ for k,_ in pairs(list) do
if k:len() > longest then
longest = k:len()
end
@@ -70,7 +70,7 @@ function help()
end
print("")
print("Valid options are:")
- local longest,t = setup_list(option_list)
+ longest,t = setup_list(option_list)
for _,k in ipairs(t) do
local opt = option_list[k]
local filler = rep(" ", longest - k:len() + 1)
@@ -87,5 +87,5 @@ function help()
print("")
print("Repository : https://github.com/latex3/l3build")
print("Bug tracker : https://github.com/latex3/l3build/issues")
- print("Copyright (C) 2014-2020 The LaTeX3 Project")
+ print("Copyright (C) 2014-2020 The LaTeX Project")
end