diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2018-10-26 23:29:50 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-10-28 12:08:52 -0700 |
commit | 6f29e1c9c1fc4c655c5ca4fad9e9256f8313d7bd (patch) | |
tree | c309ba4be4c43beedc944bbd3c5cf98d4f210f3c /src/Text/Pandoc/Writers | |
parent | 7f54f76e8b5a7b45cd61a354980ef77f65baba20 (diff) | |
download | pandoc-6f29e1c9c1fc4c655c5ca4fad9e9256f8313d7bd.tar.gz |
T.P.Lua: rename `runPandocLua` to `runLua` (API change)
Diffstat (limited to 'src/Text/Pandoc/Writers')
-rw-r--r-- | src/Text/Pandoc/Writers/Custom.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Writers/Custom.hs b/src/Text/Pandoc/Writers/Custom.hs index 7eb982f4b..acf18fba9 100644 --- a/src/Text/Pandoc/Writers/Custom.hs +++ b/src/Text/Pandoc/Writers/Custom.hs @@ -44,7 +44,7 @@ import Text.Pandoc.Class (PandocIO) import Text.Pandoc.Definition import Text.Pandoc.Error import Text.Pandoc.Lua.Global (Global (..), setGlobals) -import Text.Pandoc.Lua.Init (LuaException (LuaException), runPandocLua) +import Text.Pandoc.Lua.Init (LuaException (LuaException), runLua) import Text.Pandoc.Lua.StackInstances () import Text.Pandoc.Lua.Util (addField, dofileWithTraceback) import Text.Pandoc.Options @@ -111,7 +111,7 @@ writeCustom luaFile opts doc@(Pandoc meta _) = do let globals = [ PANDOC_DOCUMENT doc , PANDOC_SCRIPT_FILE luaFile ] - res <- runPandocLua $ do + res <- runLua $ do setGlobals globals stat <- dofileWithTraceback luaFile -- check for error in lua script (later we'll change the return type |