summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-10-16 09:04:51 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-10-16 09:04:51 (GMT)
commit93b085e465a42eb26ef8305edfc6d61ba6ce858f (patch)
treeba7060f027daf7a3724e3e1e947d27cd2b831a8a /src
parent2f50bc0bcc39cfb27537109b779d18d7389f81f1 (diff)
downloadDoxygen-93b085e465a42eb26ef8305edfc6d61ba6ce858f.zip
Doxygen-93b085e465a42eb26ef8305edfc6d61ba6ce858f.tar.gz
Doxygen-93b085e465a42eb26ef8305edfc6d61ba6ce858f.tar.bz2
issue_6547 Call graph missing due to ALIASES
The fix as given in pull request #6548 worked but at some places it didn't work as the backslash (`\`) was eaten, replacing the backslash with a `@` solves the issue.
Diffstat (limited to 'src')
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 13c60fb..54093eb 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -9889,7 +9889,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);