packages feed

haskintex 0.3.1.0 → 0.3.1.1

raw patch · 2 files changed

+8/−2 lines, 2 files

Files

Haskintex.hs view
@@ -183,7 +183,13 @@ ghc modName e = do   let e' = unpack $ T.strip e   outputStr $ "Evaluation: " ++ e'-  lift $ init <$> readProcess "ghc" [ "-e", e', modName ++ ".hs" ] []+  lift $ init <$> readProcess "ghc" +     -- Disable reading of .ghci files.+     [ "-ignore-dot-ghci"+     -- Evaluation loading the temporal module.+     -- The expression is stripped.+     , "-e", e', modName ++ ".hs"+       ] []  maxLineLength :: Int maxLineLength = 60
haskintex.cabal view
@@ -1,5 +1,5 @@ name:                haskintex-version:             0.3.1.0+version:             0.3.1.1 synopsis:            Haskell Evaluation inside of LaTeX code. description:   The /haskintex/ (Haskell in LaTeX) program is a tool that reads a LaTeX file and evaluates Haskell expressions contained