summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/l3kernel/expl3.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-03-26 22:56:01 +0000
committerKarl Berry <karl@freefriends.org>2016-03-26 22:56:01 +0000
commitacbc4b3c1d3629ae290305ff7c6056eb83d1151c (patch)
tree59c4ad13167b9bad138b2c231cbd6bc9f2c9c311 /Master/texmf-dist/tex/latex/l3kernel/expl3.lua
parent473c539aefe98fc932ea0ed651464b9f91482938 (diff)
l3 (26mar16)
git-svn-id: svn://tug.org/texlive/trunk@40146 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/l3kernel/expl3.lua')
-rw-r--r--Master/texmf-dist/tex/latex/l3kernel/expl3.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/tex/latex/l3kernel/expl3.lua b/Master/texmf-dist/tex/latex/l3kernel/expl3.lua
index c8f78ed2ce3..e3ee46ccdea 100644
--- a/Master/texmf-dist/tex/latex/l3kernel/expl3.lua
+++ b/Master/texmf-dist/tex/latex/l3kernel/expl3.lua
@@ -13,7 +13,7 @@
--
-- Do not distribute a modified version of this file.
--
--- File: l3luatex.dtx Copyright (C) 2010-2015 The LaTeX3 Project
+-- File: l3luatex.dtx Copyright (C) 2010-2016 The LaTeX3 Project
--
-- It may be distributed and/or modified under the conditions of the
-- LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -50,7 +50,7 @@ local tex_setcatcode = tex.setcatcode
local tex_sprint = tex.sprint
local tex_write = tex.write
local unicode_utf8_char = unicode.utf8.char
-local function strcmp(A, B)
+local function strcmp (A, B)
if A == B then
tex_write("0")
elseif A < B then
@@ -61,7 +61,7 @@ local function strcmp(A, B)
end
l3kernel.strcmp = strcmp
local charcat_table = l3kernel.charcat_table or 1
-local function charcat(charcode, catcode)
+local function charcat (charcode, catcode)
tex_setcatcode(charcat_table, charcode, catcode)
tex_sprint(charcat_table, unicode_utf8_char(charcode))
end