diff options
| author | Albert Krewinkel <[email protected]> | 2024-06-28 11:10:58 +0200 |
|---|---|---|
| committer | Albert Krewinkel <[email protected]> | 2024-06-28 11:10:58 +0200 |
| commit | 22ca9e7a201d48fa0d1bbf0f4065f9e3342cb9bc (patch) | |
| tree | 7f56404aee52228a52243b79900f07e55ab5b2a1 /pandoc-cli/lua | |
| parent | 522302a97edbe2bcfea3c6f8f7017016c02c4a37 (diff) | |
pandoc-cli: Include pandoc copyright in Lua version info
Diffstat (limited to 'pandoc-cli/lua')
| -rw-r--r-- | pandoc-cli/lua/PandocCLI/Lua.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pandoc-cli/lua/PandocCLI/Lua.hs b/pandoc-cli/lua/PandocCLI/Lua.hs index 282c7a328..08fb53905 100644 --- a/pandoc-cli/lua/PandocCLI/Lua.hs +++ b/pandoc-cli/lua/PandocCLI/Lua.hs @@ -41,8 +41,10 @@ runLuaInterpreter progName args = do where runStandaloneWithHistory histfile = do let settings = Settings - { settingsVersionInfo = "\nEmbedded in pandoc " <> - pandocVersionText + { settingsVersionInfo = + "\nEmbedded in pandoc " <> + pandocVersionText <> + " Copyright (C) 2006-2024 John MacFarlane" , settingsRunner = runner , settingsHistory = Just histfile } |
