diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-06-20 21:11:01 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-06-20 21:11:21 +0200 |
commit | 5ec84bfeb42e73acb4e309ccde34905b3254fb5c (patch) | |
tree | 560a6cc8aa6781e2b81f6b56d9bc5f3a68268a4f /src/Text | |
parent | f4c12606e170ffaf558d07c21514ef5dd44d1b40 (diff) | |
download | pandoc-5ec84bfeb42e73acb4e309ccde34905b3254fb5c.tar.gz |
Text.Pandoc.Lua - added DeriveDataTypeable for ghc 7.8.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Lua.hs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Lua.hs b/src/Text/Pandoc/Lua.hs index f965bd95d..90f72d685 100644 --- a/src/Text/Pandoc/Lua.hs +++ b/src/Text/Pandoc/Lua.hs @@ -1,3 +1,7 @@ +{-# LANGUAGE FlexibleContexts #-} +{-# LANGUAGE FlexibleInstances #-} +{-# LANGUAGE MultiParamTypeClasses #-} +{-# LANGUAGE DeriveDataTypeable #-} {- Copyright © 2017 Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> @@ -15,9 +19,6 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -} -{-# LANGUAGE FlexibleContexts #-} -{-# LANGUAGE FlexibleInstances #-} -{-# LANGUAGE MultiParamTypeClasses #-} {- | Module : Text.Pandoc.Lua Copyright : Copyright © 2017 Albert Krewinkel |