summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-02-07 15:51:52 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-02-07 15:51:52 (GMT)
commit7165de75f86ce97edbda3b31b61d8972895c4e12 (patch)
treebf655a18d8867fd91da719b98e7474d3669d8175
parent2802e2b4ee8158dba3f3584037e99907c6db7ec4 (diff)
downloadDoxygen-7165de75f86ce97edbda3b31b61d8972895c4e12.zip
Doxygen-7165de75f86ce97edbda3b31b61d8972895c4e12.tar.gz
Doxygen-7165de75f86ce97edbda3b31b61d8972895c4e12.tar.bz2
issue #6828 Physical newlines (^^) in ALIASES configuration tags not working with sections, subsections, subsubsections and paragraphs
Previous changes corrected use of _linebr, missed one so this was not handled properly.
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 08d3bc7..da61796 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -10021,7 +10021,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);