removing ghc and ghci options.

This commit is contained in:
Kazu Yamamoto
2010-04-28 23:28:33 +09:00
parent 5e21c71b1e
commit fb7f0c9802
3 changed files with 1 additions and 17 deletions

View File

@@ -25,23 +25,14 @@ usage = "ghc-mod version 0.4.0\n"
defaultOptions :: Options
defaultOptions = Options { convert = toPlain
, ghc = "ghc"
, ghci = "ghci"
, ghcPkg = "ghc-pkg"
, outDir = outputDir
, outFile = outputFile
}
argspec :: [OptDescr (Options -> Options)]
argspec = [ Option "l" ["tolisp"]
(NoArg (\opts -> opts { convert = toLisp }))
"print as a list of Lisp"
, Option "g" ["ghc"]
(ReqArg (\str opts -> opts { ghc = str }) "ghc")
"GHC path"
, Option "i" ["ghci"]
(ReqArg (\str opts -> opts { ghci = str }) "ghci")
"ghci path"
, Option "p" ["ghc-pkg"]
(ReqArg (\str opts -> opts { ghcPkg = str }) "ghc-pkg")
"ghc-pkg path"