aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2021-02-07 19:02:35 +0100
committerGitHub <noreply@github.com>2021-02-07 10:02:35 -0800
commitd202f7eb77242bd2d9395b950b74fc9b22f9ae13 (patch)
tree640ec90a7f62e034f755eb1f21648194412ccfde /app
parentf7be8d09649a9337ea443defb1efcf68cf39aa44 (diff)
downloadpandoc-d202f7eb77242bd2d9395b950b74fc9b22f9ae13.tar.gz
Avoid unnecessary use of NoImplicitPrelude pragma (#7089)
Diffstat (limited to 'app')
-rw-r--r--app/pandoc.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/pandoc.hs b/app/pandoc.hs
index 162570f18..0e30f45d1 100644
--- a/app/pandoc.hs
+++ b/app/pandoc.hs
@@ -1,4 +1,3 @@
-{-# LANGUAGE NoImplicitPrelude #-}
{- |
Module : Main
Copyright : Copyright (C) 2006-2021 John MacFarlane
@@ -12,7 +11,6 @@ Parses command-line options and calls the appropriate readers and
writers.
-}
module Main where
-import Prelude
import qualified Control.Exception as E
import Text.Pandoc.App (convertWithOpts, defaultOpts, options, parseOptions)
import Text.Pandoc.Error (handleError)