PDF: Use utf8ToText for LaTeX log messages.

This commit is contained in:
John MacFarlane
2025-07-09 19:02:15 -04:00
parent ca2c82133f
commit 07e9ef87cc
+1 -1
View File
@@ -320,7 +320,7 @@ latexWarnings log' = foldM_ go Nothing (BC.lines log')
go (Just msg) ln
| ln == "" = do -- emit report and reset accumulator
report $ MakePDFWarning $ render (Just 60) $
hsep $ map literal $ T.words $ UTF8.toText $ BC.toStrict msg
hsep $ map literal $ T.words $ utf8ToText msg
pure Nothing
| otherwise = pure $ Just (msg <> ln)