summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-12-03 19:08:18 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-12-03 19:08:18 (GMT)
commit8172b15c68f17dd093c3728887acb93746e50f37 (patch)
tree980f8e838363132659a2a987e7328cad03df1b6c /src
parenteeea9fb76fba464b7c18e40062001840071301a2 (diff)
downloadDoxygen-8172b15c68f17dd093c3728887acb93746e50f37.zip
Doxygen-8172b15c68f17dd093c3728887acb93746e50f37.tar.gz
Doxygen-8172b15c68f17dd093c3728887acb93746e50f37.tar.bz2
Forgot to handle deprecated in the same way as other xref items
Diffstat (limited to 'src')
-rw-r--r--src/commentscan.l2
1 files changed, 1 insertions, 1 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 }},