diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Error.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Error.hs b/src/Text/Pandoc/Error.hs index f76749a80..b624f4cb0 100644 --- a/src/Text/Pandoc/Error.hs +++ b/src/Text/Pandoc/Error.hs @@ -34,6 +34,7 @@ module Text.Pandoc.Error (PandocError(..), handleError) where import Text.Parsec.Error import Text.Parsec.Pos hiding (Line) import Data.Generics (Typeable) +import GHC.Generics (Generic) import Control.Exception (Exception) import Text.Pandoc.Shared (err) @@ -44,7 +45,7 @@ data PandocError = PandocFileReadError FilePath | PandocSomeError String | PandocParseError String | PandocParsecError Input ParseError - deriving (Show, Typeable) + deriving (Show, Typeable, Generic) -- data PandocError = -- | Generic parse failure |