HLint: use /=

This commit is contained in:
Henry de Valence
2013-12-19 20:46:11 -05:00
parent f6d151889c
commit c8fc0a0374
+1 -1
View File
@@ -190,7 +190,7 @@ stringToLaTeX _ [] = return ""
stringToLaTeX ctx (x:xs) = do
opts <- gets stOptions
rest <- stringToLaTeX ctx xs
let ligatures = writerTeXLigatures opts && not (ctx == CodeString)
let ligatures = writerTeXLigatures opts && (ctx /= CodeString)
let isUrl = ctx == URLString
when (x == '€') $
modify $ \st -> st{ stUsesEuro = True }