summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/microtype/microtype.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/latex/microtype/microtype.lua')
-rw-r--r--Master/texmf-dist/tex/latex/microtype/microtype.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf-dist/tex/latex/microtype/microtype.lua b/Master/texmf-dist/tex/latex/microtype/microtype.lua
index b6ac668d4f8..58a8d28d6c8 100644
--- a/Master/texmf-dist/tex/latex/microtype/microtype.lua
+++ b/Master/texmf-dist/tex/latex/microtype/microtype.lua
@@ -35,8 +35,8 @@ microtype = microtype or {}
local microtype = microtype
microtype.module = {
name = "microtype",
- version = 2.6,
- date = "2016/05/01",
+ version = "2.6a",
+ date = "2016/05/14",
description = "microtype module.",
author = "E. Roux, R. Schlicht and P. Gesang",
copyright = "E. Roux, R. Schlicht and P. Gesang",
@@ -51,7 +51,7 @@ local match = string.match
local tex_write = tex.write
function microtype.sprint (...)
- tex.sprint(luatexbase.catcodetables['latex-package'], ...)
+ tex.sprint(luatexbase.catcodetables['latex-package'], ...)
end
local function if_int(s)
@@ -92,7 +92,7 @@ local function do_font()
end
if thefont then
for i,v in next,thefont.characters do
- if v.index > 0 then
+ if v.index == nil or v.index > 0 then
microtype.sprint([[\@tempcnta=]]..i..[[\relax\MT@dofont@function]])
end
end