diff options
author | Karl Berry <karl@freefriends.org> | 2010-09-12 22:59:02 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-09-12 22:59:02 +0000 |
commit | 2468fdd0a97481e170ef878e0839faf948be681a (patch) | |
tree | 4f0b938f3d292a1a3436edae284f5d1f56fc5ff5 /Master/texmf-dist/source/luatex/luamplib | |
parent | 6522724bb7b7c44c0ba5f960df0d434a5d0d6bd5 (diff) |
luamplib 1.04 (3aug10)
git-svn-id: svn://tug.org/texlive/trunk@19691 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/luatex/luamplib')
-rw-r--r-- | Master/texmf-dist/source/luatex/luamplib/luamplib.dtx | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx index d61b7966a98..d9835b70375 100644 --- a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx +++ b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx @@ -37,7 +37,7 @@ \input docstrip.tex \Msg{************************************************************************} \Msg{* Installation} -\Msg{* Package: luamplib 2010/05/10 v1.02 metapost package for LuaTeX.} +\Msg{* Package: luamplib 2010/08/02 v1.04 metapost package for LuaTeX.} \Msg{************************************************************************} \keepsilent @@ -106,7 +106,7 @@ and the derived files %<*driver> \NeedsTeXFormat{LaTeX2e} \ProvidesFile{luamplib.drv}% - [2010/05/10 v1.03 mplib package for LuaTeX.]% + [2010/08/02 v1.04 mplib package for LuaTeX.]% \documentclass{ltxdoc} \begin{document} \DocInput{luamplib.dtx}% @@ -133,7 +133,7 @@ and the derived files % Right brace \} Tilde \~} % % \title{The \textsf{luamplib} package} -% \date{2010/05/10 v1.03} +% \date{2010/08/02 v1.04} % \author{Hans Hagen, Taco Hoekwater and Elie Roux \\ % \texttt{elie.roux@telecom-bretagne.eu}} % @@ -214,8 +214,8 @@ module('luamplib', package.seeall) luamplib.module = { name = "luamplib", - version = 1.03, - date = "2010/05/10", + version = 1.04, + date = "2010/08/02", description = "Lua package to typeset Metapost with LuaTeX's MPLib.", author = "Hans Hagen, Taco Hoekwater & Elie Roux", copyright = "ConTeXt Development Team & Elie Roux", @@ -240,7 +240,7 @@ local format, concat, abs = string.format, table.concat, math.abs % \begin{macrocode} luamplib.currentformat = "plain" -luamplib.currentmem = "mpost" +luamplib.currentmem = "mplib-luatex" local currentformat = luamplib.currentformat local currentmem = luamplib.currentmem @@ -726,12 +726,13 @@ end % % \begin{macrocode} +\bgroup\expandafter\expandafter\expandafter\egroup \expandafter\ifx\csname ProvidesPackage\endcsname\relax \input luatexbase-modutils.sty \else \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{luamplib} - [2010/05/10 v1.03 mplib package for LuaTeX.] + [2010/08/02 v1.04 mplib package for LuaTeX.] \RequirePackage{luatexbase-modutils} \RequirePackage{fancyvrb} \fi @@ -747,8 +748,8 @@ end % % % There are (basically) two formats for metapost: \emph{plain} and -% \emph{mpfun}. The corresponding \texttt{.mem} files are (at least will -% be) \texttt{luatex-plain.mem} and \texttt{luatex-mpfun.mem} in \TeX Live. +% \emph{mpfun}. The corresponding \texttt{.mem} files are +% \texttt{mplib-luatex.mem} in \TeX Live 2010. % With these functions you can set the format and the mem files that will % be used by this package. Warning: the package never generates the mem % files, you have to do it by hand, with \texttt{create-mem.lua}. @@ -787,6 +788,7 @@ end % % \begin{macrocode} +\bgroup\expandafter\expandafter\expandafter\egroup \expandafter\ifx\csname ProvidesPackage\endcsname\relax \def\mplibsetupcatcodes{ @@ -852,7 +854,7 @@ end }{% \end{SaveVerbatim}% \mplibaddlines{memoire}% - \luadirect{luamplib.processlines()}% + \directlua{luamplib.processlines()}% } \fi @@ -934,7 +936,7 @@ end % \subsection{\texttt{luamplib-createmem.lua}} % % Finally a small standalone file to call with \texttt{texlua} that -% generates \texttt{luatex-plain.mem} in the current directory. To generate +% generates \texttt{mplib-luatex.mem} in the current directory. To generate % other formats in other names, simply change the last line. After the % \texttt{mem} generation, you'll have to install it in a directory % searchable by \TeX . @@ -975,7 +977,7 @@ makeformat = function (name, mem_name) end end -makeformat("plain", "luatex-plain.mem") +makeformat("plain", "mplib-luatex.mem") % \end{macrocode} % \end{macro} |