summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-09-13 23:53:16 +0000
committerKarl Berry <karl@freefriends.org>2010-09-13 23:53:16 +0000
commita90c8f1327404390540ffdd03ac9f3db374c92b9 (patch)
treec19402142abd41f542fdb969212f9622f87847e4 /Master
parentc0e744b6e1d5e6201cbf207c841c34e0a1fb5ea9 (diff)
luaotfload 1.19 (12sep10)
git-svn-id: svn://tug.org/texlive/trunk@19715 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/doc/luatex/luaotfload/NEWS3
-rw-r--r--Master/texmf-dist/doc/luatex/luaotfload/luaotfload.pdfbin184675 -> 184680 bytes
-rw-r--r--Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx13
-rw-r--r--Master/texmf-dist/tex/luatex/luaotfload/luaotfload.lua4
-rw-r--r--Master/texmf-dist/tex/luatex/luaotfload/luaotfload.sty3
5 files changed, 14 insertions, 9 deletions
diff --git a/Master/texmf-dist/doc/luatex/luaotfload/NEWS b/Master/texmf-dist/doc/luatex/luaotfload/NEWS
index d3045473480..a2c26dee95a 100644
--- a/Master/texmf-dist/doc/luatex/luaotfload/NEWS
+++ b/Master/texmf-dist/doc/luatex/luaotfload/NEWS
@@ -1,6 +1,9 @@
Change History
--------------
+2010/09/12, luaotfload v1.19:
+ * fix LaTeX's detection (made Tikz fail under a non-LaTeX format)
+
2010/07/15, luaotfload v1.18:
* fix for \overwithdelims and brothers
diff --git a/Master/texmf-dist/doc/luatex/luaotfload/luaotfload.pdf b/Master/texmf-dist/doc/luatex/luaotfload/luaotfload.pdf
index fbbb282ff09..93085729e97 100644
--- a/Master/texmf-dist/doc/luatex/luaotfload/luaotfload.pdf
+++ b/Master/texmf-dist/doc/luatex/luaotfload/luaotfload.pdf
Binary files differ
diff --git a/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx b/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx
index 7defe35ae7d..fb1617adf69 100644
--- a/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx
+++ b/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx
@@ -35,7 +35,7 @@
\input docstrip.tex
\Msg{************************************************************************}
\Msg{* Installation}
-\Msg{* Package: luaotfload 2010/07/15 v1.18 OpenType layout system}
+\Msg{* Package: luaotfload 2010/09/12 v1.19 OpenType layout system}
\Msg{************************************************************************}
\keepsilent
@@ -102,7 +102,7 @@ and the derived files
%<*driver>
\NeedsTeXFormat{LaTeX2e}
\ProvidesFile{luaotfload.drv}%
- [2010/07/15 v1.18 OpenType layout system]%
+ [2010/09/12 v1.19 OpenType layout system]%
\documentclass{ltxdoc}
\usepackage{metalogo,multicol,mdwlist,fancyvrb,xcolor}
\usepackage{charter}
@@ -153,7 +153,7 @@ and the derived files
% \GetFileInfo{luaotfload.drv}
%
% \title{The \textsf{luaotfload} package}
-% \date{2010/07/15 v1.18}
+% \date{2010/09/12 v1.19}
% \author{ Elie Roux\footnote{\texttt{elie.roux@telecom-bretagne.eu}}
% \and Khaled Hosny\footnote{\texttt{khaledhosny@eglug.org}}}
%
@@ -450,8 +450,8 @@ module('luaotfload', package.seeall)
luaotfload.module = {
name = "luaotfload",
- version = 1.18,
- date = "2010/07/15",
+ version = 1.19,
+ date = "2010/09/12",
description = "OpenType layout system.",
author = "Elie Roux & Hans Hagen",
copyright = "Elie Roux",
@@ -762,12 +762,13 @@ end
\csname ifluaotfloadloaded\endcsname
\let\ifluaotfloadloaded\endinput
+\bgroup\expandafter\expandafter\expandafter\egroup
\expandafter\ifx\csname ProvidesPackage\endcsname\relax
\input luatextra.sty
\else
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{luaotfload}%
- [2010/07/15 v1.18 OpenType layout system]
+ [2010/09/12 v1.19 OpenType layout system]
\RequirePackage{luatextra}
\fi
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.lua b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.lua
index fbfc6f3d2fd..ce2c201cc1a 100644
--- a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.lua
+++ b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.lua
@@ -20,8 +20,8 @@ module('luaotfload', package.seeall)
luaotfload.module = {
name = "luaotfload",
- version = 1.18,
- date = "2010/07/15",
+ version = 1.19,
+ date = "2010/09/12",
description = "OpenType layout system.",
author = "Elie Roux & Hans Hagen",
copyright = "Elie Roux",
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.sty b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.sty
index bd347d6de8f..eb7f994ee68 100644
--- a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.sty
+++ b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload.sty
@@ -19,12 +19,13 @@
\csname ifluaotfloadloaded\endcsname
\let\ifluaotfloadloaded\endinput
+\bgroup\expandafter\expandafter\expandafter\egroup
\expandafter\ifx\csname ProvidesPackage\endcsname\relax
\input luatextra.sty
\else
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{luaotfload}%
- [2010/07/15 v1.18 OpenType layout system]
+ [2010/09/12 v1.19 OpenType layout system]
\RequirePackage{luatextra}
\fi