summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Annex.hs b/Annex.hs
index 1517a3470..8a386a044 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -24,6 +24,7 @@ import Control.Monad.IO.Control
import Control.Applicative hiding (empty)
import qualified Git
+import Git.CatFile
import Git.Queue
import Types.Backend
import qualified Types.Remote
@@ -55,6 +56,7 @@ data AnnexState = AnnexState
, fast :: Bool
, auto :: Bool
, branchstate :: BranchState
+ , catfilehandle :: Maybe CatFileHandle
, forcebackend :: Maybe String
, forcenumcopies :: Maybe Int
, defaultkey :: Maybe String
@@ -79,6 +81,7 @@ newState gitrepo = AnnexState
, fast = False
, auto = False
, branchstate = startBranchState
+ , catfilehandle = Nothing
, forcebackend = Nothing
, forcenumcopies = Nothing
, defaultkey = Nothing