summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-06-08 17:36:44 (GMT)
committerGitHub <noreply@github.com>2019-06-08 17:36:44 (GMT)
commitefbfb54c007d13ecfaa939829c80b75f1a67abf3 (patch)
treebea66384921efecdd73433cf2201a907b0e120b0
parente773e6cb9e117621e06fb81098d33417e8a97720 (diff)
parent0937e9ce7d04cbb701f58aaa724866a9f213822f (diff)
downloadDoxygen-efbfb54c007d13ecfaa939829c80b75f1a67abf3.zip
Doxygen-efbfb54c007d13ecfaa939829c80b75f1a67abf3.tar.gz
Doxygen-efbfb54c007d13ecfaa939829c80b75f1a67abf3.tar.bz2
Merge pull request #7044 from albert-github/feature/bug_copydoc_space
No space when replacing `\copydoc` by `\copydetails`
-rw-r--r--src/commentscan.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index eb1629e..e75d023 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -2298,7 +2298,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
if (*yytext=='\n') yyLineNr++;
addOutput('\n');
setOutput(OutputDoc);
- addOutput("\\copydetails ");
+ addOutput(" \\copydetails ");
addOutput(g_copyDocArg);
addOutput("\n");
BEGIN(Comment);