From 0faef8a6e3d4a74edb0d1f8d261d55da52c9c5b9 Mon Sep 17 00:00:00 2001 From: albert-github Date: Mon, 25 Feb 2019 11:49:03 +0100 Subject: 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. --- src/doxygen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v0.12