summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-02-28 20:02:05 (GMT)
committerGitHub <noreply@github.com>2019-02-28 20:02:05 (GMT)
commit25e30224977bd488c33c6f84d6cad1c5eca5e62a (patch)
tree49b6e2d8e53a90fd64f1656272ef6b4a8184e102 /src/doxygen.cpp
parent8235ff5a503dede725d6f956821dccccce2464bd (diff)
parent0faef8a6e3d4a74edb0d1f8d261d55da52c9c5b9 (diff)
downloadDoxygen-25e30224977bd488c33c6f84d6cad1c5eca5e62a.zip
Doxygen-25e30224977bd488c33c6f84d6cad1c5eca5e62a.tar.gz
Doxygen-25e30224977bd488c33c6f84d6cad1c5eca5e62a.tar.bz2
Merge pull request #6858 from albert-github/feature/issue_6847
issue #6847 Physical newlines (^^) in ALIASES produce a mismatch between documentation and source code
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 85ca7a3..fa54d68 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -9802,7 +9802,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);