summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/l3build/l3build-help.lua
diff options
context:
space:
mode:
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