diff options
Diffstat (limited to 'Master/texmf-dist/source/luatex/luamplib/luamplib.dtx')
-rw-r--r-- | Master/texmf-dist/source/luatex/luamplib/luamplib.dtx | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx index d6aa0c705d2..1e26424895c 100644 --- a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx +++ b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx @@ -127,7 +127,7 @@ See source file '\inFileName' for licencing and contact information. % \author{Hans Hagen, Taco Hoekwater and Elie Roux \\ % Maintainer: Manuel Pégourié-Gonnard --- % Support: \email{lualatex-dev@tug.org}} -% \date{2010/12/28 v1.07} +% \date{2011/06/23 v1.08} % % \maketitle % @@ -189,8 +189,8 @@ module('luamplib', package.seeall) % \begin{macrocode} local err, warn, info, log = luatexbase.provides_module({ name = "luamplib", - version = 1.07, - date = "2010/12/28", + version = 1.08, + date = "2011/06/23", description = "Lua package to typeset Metapost with LuaTeX's MPLib.", }) @@ -626,7 +626,7 @@ end \else \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{luamplib} - [2010/12/28 v1.07 mplib package for LuaTeX] + [2011/06/23 v1.08 mplib package for LuaTeX] \RequirePackage{luatexbase-modutils} \RequirePackage{fancyvrb} \fi @@ -694,9 +694,17 @@ end \begingroup \catcode`\,=13 \catcode`\-=13 +\catcode`\<=13 +\catcode`\>=13 +\catcode`\^^I=13 +\catcode`\`=13 % must be last... \gdef\FV@hack{% \def,{\string,}% \def-{\string-}% + \def<{\string<}% + \def>{\string>}% + \def`{\string`}% + \def^^I{\string^^I}% } \endgroup % \end{macrocode} |