Fixer a nbug in >>RenameS: ----------------------------------------------------------------------

This commit is contained in:
aarne
2003-11-25 06:33:23 +00:00
parent 9cd2c273a2
commit 42c4ef025c
3 changed files with 4 additions and 4 deletions

View File

@@ -194,7 +194,7 @@ doc2latex (Doc title paras) = unlines $
para2latex :: Paragraph -> String
para2latex p = case p of
Text its -> concat (map item2latex its)
Item its -> "$\\bullet$" ++ concat (map item2latex its)
Item its -> "\n\n$\\bullet$" ++ concat (map item2latex its) ++ "\n\n"
Code s -> unlines $ envLatex "verbatim" $ map (indent 2) $
remEmptyLines $ lines $ s
New -> "\n"