summaryrefslogtreecommitdiff
path: root/src/Text
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2024-02-13 23:46:41 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2024-02-13 23:46:41 -0800
commit7c3a9b6f2f73cc891e8b40b1564ff76c5508e5cb (patch)
tree6147efb938bbca167e2ac93b92304ec93ddfcf9e /src/Text
parent8c42926cb2161efac51e259a25d2047d31de3538 (diff)
Fix some exports to avoid warnings on older ghc versions.
Diffstat (limited to 'src/Text')
-rw-r--r--src/Text/Pandoc/Writers/Djot.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Djot.hs b/src/Text/Pandoc/Writers/Djot.hs
index 0e605398e..703a54347 100644
--- a/src/Text/Pandoc/Writers/Djot.hs
+++ b/src/Text/Pandoc/Writers/Djot.hs
@@ -33,7 +33,7 @@ import Text.Pandoc.Shared (isTightList, tshow, stringify, onlySimpleTableCells,
import Text.DocLayout
import Text.DocTemplates (renderTemplate)
-import Control.Monad.State
+import Control.Monad.State (StateT(..), gets, modify)
import Control.Monad (zipWithM, when)
import Data.Maybe (fromMaybe)
import qualified Djot.AST as D