Skip to content

Commit e140e03

Browse files
authored
Merge pull request doxygen#12038 from albert-github/feature/bug_129682_param
bug 129682 Wrong function dependency is made
2 parents feb7d5c + b4c46ea commit e140e03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/docparser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ void DocParser::handleLinkedWord(DocNodeVariant *parent,DocNodeList &children,bo
792792
};
793793
QCString name = linkToText(context.lang,context.token->name,TRUE);
794794
AUTO_TRACE("word={}",name);
795-
if ((!context.autolinkSupport && !ignoreAutoLinkFlag) || ignoreWord(context.token->name)) // no autolinking -> add as normal word
795+
if (!context.autolinkSupport || ignoreAutoLinkFlag || ignoreWord(context.token->name)) // no autolinking -> add as normal word
796796
{
797797
children.append<DocWord>(this,parent,name);
798798
return;

0 commit comments

Comments
 (0)