diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2023-08-30 22:32:47 -0700 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2023-08-30 22:32:47 -0700 |
| commit | 6666599af9fde970f5bb2435ec82eeae5b490415 (patch) | |
| tree | c34e0b4e103ac03f83a944572d4caaa216627c30 /src | |
| parent | 1e43eb46ce3156ef72b5890d64af17c81ef6c580 (diff) | |
Fix compiler warning by removing redundant definition.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Text/Pandoc/Readers/Org/Blocks.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Org/Blocks.hs b/src/Text/Pandoc/Readers/Org/Blocks.hs index c1e023e58..9c2175728 100644 --- a/src/Text/Pandoc/Readers/Org/Blocks.hs +++ b/src/Text/Pandoc/Readers/Org/Blocks.hs @@ -855,7 +855,6 @@ orderedList = try $ do (indent, attr) <- lookAhead orderedListStart fmap (B.orderedListWith attr . compactify) . sequence <$> many1 (listItem ((fst <$> orderedListStart) `indented` indent)) - where fst3 (x,_,_) = x definitionListItem :: PandocMonad m => OrgParser m Int |
