diff options
| author | Albert Krewinkel <albert@zeitkraut.de> | 2022-09-29 14:11:39 +0200 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2022-09-30 08:33:40 -0700 |
| commit | a20b92097a862a1bf8c2672f4b21a41c4b586b5b (patch) | |
| tree | c68fcd1a69cb74a7627aa2ea74a12e7aaf30e50a | |
| parent | 0ab014ed1e5890e338792fab98aecc45cd889f99 (diff) | |
App: stop including the HsLua version in version info output
| -rw-r--r-- | src/Text/Pandoc/App/CommandLineOptions.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Text/Pandoc/App/CommandLineOptions.hs b/src/Text/Pandoc/App/CommandLineOptions.hs index abd7703a4..4b18bde7e 100644 --- a/src/Text/Pandoc/App/CommandLineOptions.hs +++ b/src/Text/Pandoc/App/CommandLineOptions.hs @@ -37,7 +37,6 @@ import Data.List (isPrefixOf) #endif import Data.Maybe (fromMaybe, isJust) import Data.Text (Text) -import HsLua (Exception, getglobal, openlibs, peek, run, top) import Safe (tailDef) import Skylighting (Syntax (..), defaultSyntaxMap) import System.Console.GetOpt @@ -1007,7 +1006,7 @@ compileInfo = "\nCompiled with pandoc-types " ++ VERSION_pandoc_types ++ ", texmath " ++ VERSION_texmath ++ ", skylighting " ++ VERSION_skylighting ++ ",\nciteproc " ++ VERSION_citeproc ++ - ", ipynb " ++ VERSION_ipynb ++ ", hslua " ++ VERSION_hslua + ", ipynb " ++ VERSION_ipynb handleUnrecognizedOption :: String -> [String] -> [String] handleUnrecognizedOption "--smart" = |
