[latex3-commits] [l3svn] 01/02: l3build: Allow for empty lists
noreply at latex-project.org
noreply at latex-project.org
Fri May 19 10:31:03 CEST 2017
This is an automated email from the git hooks/post-receive script.
joseph pushed a commit to branch master
in repository l3svn.
commit 2c948ea9451b1756e91371776b70765a0798c1c8
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Fri May 19 09:27:56 2017 +0100
l3build: Allow for empty lists
---
l3build/l3build.lua | 2 ++
1 file changed, 2 insertions(+)
diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index 2e16a1a..718d388 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -1799,6 +1799,8 @@ function bundlectan()
-- Generate a list of individual file names excluding those in the second
-- argument: the latter is a table
local function excludelist(include, exclude)
+ local include = include or { }
+ local exclude = exclude or { }
local includelist = { }
local excludelist = { }
for _,i in ipairs(exclude) do
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the latex3-commits
mailing list