diff --git a/Haskintex.hs b/Haskintex.hs
--- a/Haskintex.hs
+++ b/Haskintex.hs
@@ -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
diff --git a/haskintex.cabal b/haskintex.cabal
--- a/haskintex.cabal
+++ b/haskintex.cabal
@@ -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
