summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2015-01-25 21:44:00 +0000
committerKarl Berry <karl@freefriends.org>2015-01-25 21:44:00 +0000
commit2bf6344529fc42f4f59849edc33921f7751f03dd (patch)
tree96d43402c372199cc3da85138e978f3c32470747
parent78c57de73c17be73812c5915446072858521c11a (diff)
luamplib (25jan15)
git-svn-id: svn://tug.org/texlive/trunk@36144 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/NEWS4
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/luamplib.pdfbin137590 -> 137596 bytes
-rw-r--r--Master/texmf-dist/source/luatex/luamplib/luamplib.dtx12
-rw-r--r--Master/texmf-dist/tex/luatex/luamplib/luamplib.lua6
-rw-r--r--Master/texmf-dist/tex/luatex/luamplib/luamplib.sty2
5 files changed, 14 insertions, 10 deletions
diff --git a/Master/texmf-dist/doc/luatex/luamplib/NEWS b/Master/texmf-dist/doc/luatex/luamplib/NEWS
index fb6b3a71d09..a736d5cd714 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/NEWS
+++ b/Master/texmf-dist/doc/luatex/luamplib/NEWS
@@ -1,5 +1,9 @@
History of the luamplib package
+2015/01/26 2.9.1
+ * fix a bug reported by Herbert Schulz via luatex mailing list
+ (http://tug.org/pipermail/luatex/2015-January/005054.html)
+
2015/01/05 2.9.0
* after declaring `\mplibcodeinherit{enable}', each mplib code chunks
will inherit variables/constants/macros defined by previous chunks.
diff --git a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
index cf176ee9f78..1636e24e32b 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
+++ b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
Binary files differ
diff --git a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx
index c5374632c75..6c6adc9757a 100644
--- a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx
+++ b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx
@@ -85,7 +85,7 @@ See source file '\inFileName' for licencing and contact information.
%<*driver>
\NeedsTeXFormat{LaTeX2e}
\ProvidesFile{luamplib.drv}%
- [2015/01/05 v2.9.0 Interface for using the mplib library]%
+ [2015/01/26 v2.9.1 Interface for using the mplib library]%
\documentclass{ltxdoc}
\usepackage{metalogo,multicol,mdwlist,fancyvrb,xspace}
\usepackage[x11names]{xcolor}
@@ -154,7 +154,7 @@ See source file '\inFileName' for licencing and contact information.
% \author{Hans Hagen, Taco Hoekwater, Elie Roux, Philipp Gesang and Kim Dohyun\\
% Maintainer: LuaLaTeX Maintainers ---
% Support: \email{lualatex-dev@tug.org}}
-% \date{2015/01/05 v2.9.0}
+% \date{2015/01/26 v2.9.1}
%
% \maketitle
%
@@ -350,8 +350,8 @@ luamplib.lastlog = ""
local err, warn, info, log = luatexbase.provides_module({
name = "luamplib",
- version = "2.9.0",
- date = "2015/01/05",
+ version = "2.9.1",
+ date = "2015/01/26",
description = "Lua package to typeset Metapost with LuaTeX's MPLib.",
})
@@ -778,7 +778,7 @@ luamplib.codeinherit = false
local mplibinstances = {}
local process = function (data,indeed)
local standalone, firstpass = not luamplib.codeinherit, not indeed
- local currfmt = currentformat .. luamplib.numbersystem
+ local currfmt = currentformat .. (luamplib.numbersystem or "scaled")
currfmt = firstpass and currfmt or (currfmt.."2")
local mpx = mplibinstances[currfmt]
if standalone or not mpx then
@@ -1613,7 +1613,7 @@ luamplib.colorconverter = colorconverter
\else
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{luamplib}
- [2015/01/05 v2.9.0 mplib package for LuaTeX]
+ [2015/01/26 v2.9.1 mplib package for LuaTeX]
\RequirePackage{luatexbase-modutils}
\fi
% \end{macrocode}
diff --git a/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua b/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua
index 3f9a7e7a904..6a8301b06a1 100644
--- a/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua
+++ b/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua
@@ -18,8 +18,8 @@ luamplib.lastlog = ""
local err, warn, info, log = luatexbase.provides_module({
name = "luamplib",
- version = "2.9.0",
- date = "2015/01/05",
+ version = "2.9.1",
+ date = "2015/01/26",
description = "Lua package to typeset Metapost with LuaTeX's MPLib.",
})
@@ -390,7 +390,7 @@ luamplib.codeinherit = false
local mplibinstances = {}
local process = function (data,indeed)
local standalone, firstpass = not luamplib.codeinherit, not indeed
- local currfmt = currentformat .. luamplib.numbersystem
+ local currfmt = currentformat .. (luamplib.numbersystem or "scaled")
currfmt = firstpass and currfmt or (currfmt.."2")
local mpx = mplibinstances[currfmt]
if standalone or not mpx then
diff --git a/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty b/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty
index 60744698c6a..b826fc117af 100644
--- a/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty
+++ b/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty
@@ -14,7 +14,7 @@
\else
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{luamplib}
- [2015/01/05 v2.9.0 mplib package for LuaTeX]
+ [2015/01/26 v2.9.1 mplib package for LuaTeX]
\RequirePackage{luatexbase-modutils}
\fi
\RequireLuaModule{luamplib}