diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2015-07-30 07:34:57 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2015-07-30 07:34:57 +0200 |
commit | bc277dc065a8ca8bae05b9a5224ef377c5d88964 (patch) | |
tree | 8c17f3391358897a5b73ce44b792504de13481cf /src | |
parent | 43031f08720cd2cd305e7c7b1eb5f40b52d0b36b (diff) | |
parent | 6e87573031e27cc0741f3f42c65b6ae8cbeae9fd (diff) | |
download | luaotfload-bc277dc065a8ca8bae05b9a5224ef377c5d88964.tar.gz |
Merge pull request #3 from dohyunkim/newpgf
compatible-with-beamer revisited
Diffstat (limited to 'src')
-rw-r--r-- | src/luaotfload-colors.lua | 2 | ||||
-rw-r--r-- | src/luaotfload.sty | 20 |
2 files changed, 1 insertions, 21 deletions
diff --git a/src/luaotfload-colors.lua b/src/luaotfload-colors.lua index ff4dc13..89884b6 100644 --- a/src/luaotfload-colors.lua +++ b/src/luaotfload-colors.lua @@ -324,7 +324,7 @@ local color_handler = function (head) local no_extgs = not tpr:find("/ExtGState<<.*>>") local pgf_loaded = no_extgs and luaotfload.pgf_loaded if pgf_loaded then - tpr = texgettoks(pgf_loaded) -- see luaotfload.sty + tpr = texgettoks(pgf_loaded) end local t = "" diff --git a/src/luaotfload.sty b/src/luaotfload.sty index 34f9a87..c9c9864 100644 --- a/src/luaotfload.sty +++ b/src/luaotfload.sty @@ -46,23 +46,3 @@ \fi \RequireLuaModule{luaotfload-main} -% for compatibility with beamer class, which loads pgf package. -\ifcsname selectfont\endcsname - \AtBeginDocument{\@ifpackageloaded{pgfsys}{ - \csname newtoks\endcsname\pgf@sys@pgf@resource@list@extgs@toks - \directlua{luaotfload.pgf_loaded=\the\allocationnumber} - \def\pgf@sys@pgf@resource@list@extgs{\the\pgf@sys@pgf@resource@list@extgs@toks} - \def\pgf@sys@addpdfresource@extgs@plain#1{\global\pgf@sys@pgf@resource@list@extgs@toks - \expandafter{\the\pgf@sys@pgf@resource@list@extgs@toks #1}} - }{}} -\endinput\fi -% under plain tex, tikz (pgf) should be loaded before luaotfload. -\ifcsname pgf@sys@pgf@resource@list@extgs\endcsname\else\endinput\fi -\count255=\the\catcode`@\relax -\catcode`@=11\relax -\newtoks\pgf@sys@pgf@resource@list@extgs@toks -\directlua{luaotfload.pgf_loaded=\the\allocationnumber} -\def\pgf@sys@pgf@resource@list@extgs{\the\pgf@sys@pgf@resource@list@extgs@toks} -\def\pgf@sys@addpdfresource@extgs@plain#1{\global\pgf@sys@pgf@resource@list@extgs@toks - \expandafter{\the\pgf@sys@pgf@resource@list@extgs@toks #1}} -\catcode`@=\the\count255\relax |