diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-10-02 00:09:48 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-10-02 00:09:48 -0700 |
commit | 05146ac97c22d0480311b72397ec2ce1425b48ac (patch) | |
tree | 8e6b67324591761c8de79e4b8341b154fff14be3 /src/Text | |
parent | 2bec94e49f1a8237f8f4853ab2b0e13fba5e882e (diff) | |
download | pandoc-05146ac97c22d0480311b72397ec2ce1425b48ac.tar.gz |
T.P.Lua.StackInstances - moved pragmas to top of file.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Lua/StackInstances.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Text/Pandoc/Lua/StackInstances.hs b/src/Text/Pandoc/Lua/StackInstances.hs index 220dfccfa..931b8c225 100644 --- a/src/Text/Pandoc/Lua/StackInstances.hs +++ b/src/Text/Pandoc/Lua/StackInstances.hs @@ -1,3 +1,8 @@ +{-# LANGUAGE NoImplicitPrelude #-} +{-# LANGUAGE FlexibleInstances #-} +{-# LANGUAGE ScopedTypeVariables #-} +{-# LANGUAGE LambdaCase #-} +{-# OPTIONS_GHC -fno-warn-orphans #-} {- Copyright © 2012-2018 John MacFarlane <jgm@berkeley.edu> 2017-2018 Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> @@ -16,11 +21,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 FlexibleInstances #-} -{-# LANGUAGE LambdaCase #-} -{-# LANGUAGE NoImplicitPrelude #-} -{-# LANGUAGE ScopedTypeVariables #-} -{-# OPTIONS_GHC -fno-warn-orphans #-} {- | Module : Text.Pandoc.Lua.StackInstances Copyright : © 2012-2018 John MacFarlane |