summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-02-25 10:49:03 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-02-25 10:49:03 (GMT)
commit0faef8a6e3d4a74edb0d1f8d261d55da52c9c5b9 (patch)
treee19d898e8f85720a16decc04d7ec0f4d4547c5c6 /src/doxygen.cpp
parent7c8994e18b57586f116ee223da9bac35b4262570 (diff)
downloadDoxygen-0faef8a6e3d4a74edb0d1f8d261d55da52c9c5b9.zip
Doxygen-0faef8a6e3d4a74edb0d1f8d261d55da52c9c5b9.tar.gz
Doxygen-0faef8a6e3d4a74edb0d1f8d261d55da52c9c5b9.tar.bz2
issue_6847 Physical newlines (^^) in ALIASES produce a mismatch between documentation and source code
In 1.8.15 the `^^` was already translated to `\_linebr` but here there was a ` ` (space) after the `^^`, here this is not the case resulting in "warning: Found unknown command `\_linebrline'" placing a ` ` after the translated value solves this problem.
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index caa13a6..515127b 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -9824,7 +9824,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);