Text/Pandoc/Biblio.hs - made getRefs point-free.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@1380 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
fiddlosopher 2008-08-05 23:18:42 +00:00
parent a560c0acc1
commit 81001fde56

View file

@ -71,6 +71,6 @@ getCite i | Cite t _ <- i = [t]
| otherwise = []
getRefs :: [Reference] -> [Target] -> [Reference]
getRefs r = map $ getReference r
getRefs = map . getReference
#endif