diff options
Diffstat (limited to 'src/Haddock/Parser')
| -rw-r--r-- | src/Haddock/Parser/Util.hs | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/src/Haddock/Parser/Util.hs b/src/Haddock/Parser/Util.hs index ea682601..92fa7448 100644 --- a/src/Haddock/Parser/Util.hs +++ b/src/Haddock/Parser/Util.hs @@ -7,7 +7,7 @@ import           Data.ByteString.Char8 (ByteString)  import qualified Data.ByteString.Char8 as BS  takeUntil :: ByteString -> Parser ByteString -takeUntil end_ = dropEnd <$> requireEnd (scan (False, end) p) +takeUntil end_ = dropEnd <$> requireEnd (scan (False, end) p) >>= gotSome    where      end = BS.unpack end_ @@ -20,3 +20,7 @@ takeUntil end_ = dropEnd <$> requireEnd (scan (False, end) p)      dropEnd = BS.reverse . BS.drop (length end) . BS.reverse      requireEnd = mfilter (BS.isSuffixOf end_) + +    gotSome xs +      | BS.null xs = fail "didn't get any content" +      | otherwise = return xs | 
