diff -Nru pandoc-0.46+2/changelog pandoc-0.46+2+nmu1/changelog --- pandoc-0.46+2/changelog 2008-02-09 17:04:19.000000000 +0000 +++ pandoc-0.46+2+nmu1/changelog 2009-08-04 14:23:17.000000000 +0100 @@ -1,3 +1,12 @@ +pandoc (0.46+2+nmu1) unstable; urgency=low + + * Non-maintainer upload. + * Text/Pandoc/Definition.hs: Patch file to fix Haddock parse + error which led to FTBFS. Move annotation of type synonym to before the + definition. (Closes: #536960) + + -- Iain Lane Tue, 04 Aug 2009 14:22:55 +0100 + pandoc (0.46+2) unstable; urgency=low [ Recai Oktaş ] diff -Nru pandoc-0.46+2/debian/changelog pandoc-0.46+2+nmu1/debian/changelog --- pandoc-0.46+2/debian/changelog 2008-02-09 17:04:19.000000000 +0000 +++ pandoc-0.46+2+nmu1/debian/changelog 2009-08-04 14:23:17.000000000 +0100 @@ -1,3 +1,12 @@ +pandoc (0.46+2+nmu1) unstable; urgency=low + + * Non-maintainer upload. + * Text/Pandoc/Definition.hs: Patch file to fix Haddock parse + error which led to FTBFS. Move annotation of type synonym to before the + definition. (Closes: #536960) + + -- Iain Lane Tue, 04 Aug 2009 14:22:55 +0100 + pandoc (0.46+2) unstable; urgency=low [ Recai Oktaş ] diff -Nru pandoc-0.46+2/Text/Pandoc/Definition.hs pandoc-0.46+2+nmu1/Text/Pandoc/Definition.hs --- pandoc-0.46+2/Text/Pandoc/Definition.hs 2008-02-08 04:01:40.000000000 +0000 +++ pandoc-0.46+2+nmu1/Text/Pandoc/Definition.hs 2009-08-04 14:22:46.000000000 +0100 @@ -89,7 +89,8 @@ -- | Type of quotation marks to use in Quoted inline. data QuoteType = SingleQuote | DoubleQuote deriving (Show, Eq, Read) -type Target = (String, String) -- ^ Link target (URL, title) +-- | Link target (URL, title) +type Target = (String, String) -- | Inline elements. data Inline