diff options
author | Raúl Benencia <rul@kalgan.cc> | 2013-09-11 10:46:41 -0300 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2013-09-11 10:46:41 -0300 |
commit | 66c096b62db95d96ef9552bd68f36df3054ebc3e (patch) | |
tree | 0df64b679c57a88888c180ceb7adf76e453e3aa4 /src/Lazymail/State.hs | |
parent | 931f39e470ff0aae732ff60abb2947481989620e (diff) |
Removed no longer needed imports
Diffstat (limited to 'src/Lazymail/State.hs')
-rw-r--r-- | src/Lazymail/State.hs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Lazymail/State.hs b/src/Lazymail/State.hs index bf1e3c2..fb640a6 100644 --- a/src/Lazymail/State.hs +++ b/src/Lazymail/State.hs @@ -9,9 +9,7 @@ module Lazymail.State where import Codec.MIME.Type(MIMEValue, nullMIMEValue) -import Text.ParserCombinators.Parsec.Rfc2822(Message, GenericMessage(..)) import UI.NCurses(ColorID(..), defaultColorID) -import Network.Email.Mailbox(Flag(..), Flags) import System.FilePath import Lazymail.Types @@ -29,7 +27,7 @@ initialState = LazymailState { , indexState = initialIndexState , composeState = initialComposeState , emailState = initialEmailState - , inputState = initialInputState + , inputState = initialInputState , colorStyle = initialColorStyle } |