aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-09-04 10:02:08 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-09-04 11:06:01 -0700
commitaaef51707c1b7612232d1d97276862ec473bb686 (patch)
treebdb3b1181c91ae25b78dad881ccddcc692a8f9ea /src/Text/Pandoc/Readers
parent481ff8ac44cff104494b89589326b6cb78565cbf (diff)
downloadpandoc-aaef51707c1b7612232d1d97276862ec473bb686.tar.gz
Minor renaming to avoid shadowing.
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r--src/Text/Pandoc/Readers/RTF.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/RTF.hs b/src/Text/Pandoc/Readers/RTF.hs
index e577ee70b..26a132758 100644
--- a/src/Text/Pandoc/Readers/RTF.hs
+++ b/src/Text/Pandoc/Readers/RTF.hs
@@ -207,8 +207,8 @@ parseRTF = do
bs <- (case toks of
-- if we start with {\rtf1...}, parse that and ignore
-- what follows (which in certain cases can be non-RTF content)
- tok@(Tok _ (Grouped (Tok _ (ControlWord "rtf" (Just 1)) : _))) : _
- -> foldM processTok mempty [tok]
+ rtftok@(Tok _ (Grouped (Tok _ (ControlWord "rtf" (Just 1)) : _))) : _
+ -> foldM processTok mempty [rtftok]
_ -> foldM processTok mempty toks)
>>= emitBlocks
unclosed <- closeContainers