summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/commentscan.l2
-rw-r--r--src/latexgen.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index e636aa6..767b964 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -185,7 +185,7 @@ static const std::map< std::string, DocCmdMap > docCmdMap =
{ "date", { 0, CommandSpacing::Block }},
{ "def", { &handleDef, CommandSpacing::Invisible }},
{ "defgroup", { &handleDefGroup, CommandSpacing::Invisible }},
- { "deprecated", { &handleDeprecated, CommandSpacing::Block }},
+ { "deprecated", { &handleDeprecated, CommandSpacing::XRef }},
{ "details", { &handleDetails, CommandSpacing::Block }},
{ "dir", { &handleDir, CommandSpacing::Invisible }},
{ "docbookinclude", { 0, CommandSpacing::Inline }},
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index 3f4435f..b98b35b 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -1213,7 +1213,7 @@ void LatexGenerator::endIndexSection(IndexSections is)
}
while ((nd=nli.current()))
{
- if (nd->isLinkableInProject())
+ if (nd->isLinkableInProject() && !nd->isAlias())
{
//if (compactLatex) t << "\\input"; else t << "\\include";
t << "\\input";