diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-12 12:53:19 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-12 12:53:19 (GMT) |
commit | bb18b811e8f1a4a939eadf28d12bc5f99dd74b82 (patch) | |
tree | 96c3b47bbfb0ee3d28e46421e1317253ba052f01 /src/mandocvisitor.cpp | |
parent | 6e8975abdb6b52477a5788bca969e13e467814dd (diff) | |
download | Doxygen-bb18b811e8f1a4a939eadf28d12bc5f99dd74b82.zip Doxygen-bb18b811e8f1a4a939eadf28d12bc5f99dd74b82.tar.gz Doxygen-bb18b811e8f1a4a939eadf28d12bc5f99dd74b82.tar.bz2 |
Release-1.3.8-20040812
Diffstat (limited to 'src/mandocvisitor.cpp')
-rw-r--r-- | src/mandocvisitor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mandocvisitor.cpp b/src/mandocvisitor.cpp index 6bb1288..4fddfce 100644 --- a/src/mandocvisitor.cpp +++ b/src/mandocvisitor.cpp @@ -460,6 +460,7 @@ void ManDocVisitor::visitPre(DocSimpleList *) { if (m_hide) return; m_indent+=2; + if (!m_firstCol) m_t << endl; m_t << ".PD 0" << endl; } @@ -507,6 +508,7 @@ void ManDocVisitor::visitPre(DocHtmlList *) { if (m_hide) return; m_indent+=2; + if (!m_firstCol) m_t << endl; m_t << ".PD 0" << endl; } @@ -514,6 +516,7 @@ void ManDocVisitor::visitPost(DocHtmlList *) { if (m_hide) return; m_indent-=2; + if (!m_firstCol) m_t << endl; m_t << ".PP" << endl; } @@ -741,6 +744,7 @@ void ManDocVisitor::visitPost(DocSecRefList *) { if (m_hide) return; m_indent-=2; + if (!m_firstCol) m_t << endl; m_t << ".PP" << endl; } |