summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-11-04 15:49:38 (GMT)
committerGitHub <noreply@github.com>2018-11-04 15:49:38 (GMT)
commitd49052d8c214ec47a43e7be9ba563b24d748767f (patch)
treea1b866d4ba7f5e2a7e7f14d76b0de4c94664ba56
parent76521376a574b5542aaa72c565406b0e951e98cc (diff)
parent93b085e465a42eb26ef8305edfc6d61ba6ce858f (diff)
downloadDoxygen-d49052d8c214ec47a43e7be9ba563b24d748767f.zip
Doxygen-d49052d8c214ec47a43e7be9ba563b24d748767f.tar.gz
Doxygen-d49052d8c214ec47a43e7be9ba563b24d748767f.tar.bz2
Merge pull request #6558 from albert-github/feature/issue_6547_2
issue_6547 Call graph missing due to ALIASES
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 0f9c941..3d1c3ab 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -9890,7 +9890,7 @@ static void escapeAliases()
while ((in=value.find("^^",p))!=-1)
{
newValue+=value.mid(p,in-p);
- newValue+="\\_linebr";
+ newValue+="@_linebr";
p=in+2;
}
newValue+=value.mid(p,value.length()-p);