summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-04-22 09:18:11 (GMT)
committerGitHub <noreply@github.com>2018-04-22 09:18:11 (GMT)
commit994ce9c5ccc2cd39b20376a3631d268eb9e634a1 (patch)
tree140bda612cb642a00798d461905e18b438356862
parent0eea2d7abb5c9e080d031923a98eb7c23159edb6 (diff)
parent1a16a1be6eff7c32795455e47c09b9452f7c3a4e (diff)
downloadDoxygen-994ce9c5ccc2cd39b20376a3631d268eb9e634a1.zip
Doxygen-994ce9c5ccc2cd39b20376a3631d268eb9e634a1.tar.gz
Doxygen-994ce9c5ccc2cd39b20376a3631d268eb9e634a1.tar.bz2
Merge pull request #660 from albert-github/feature/bug_msg
Consistent warning messages
-rw-r--r--src/commentscan.l10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index 588d40a..727bbb9 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -1860,10 +1860,10 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
addOutput(*yytext);
}
<FormatBlock><<EOF>> {
- QCString endTag = "@end"+blockName;
+ QCString endTag = "end"+blockName;
if (blockName=="startuml") endTag="enduml";
warn(yyFileName,yyLineNr,
- "reached end of comment while inside a @%s block; check for missing @%s tag!",
+ "reached end of comment while inside a \\%s block; check for missing \\%s tag!",
blockName.data(),endTag.data()
);
yyterminate();
@@ -1944,7 +1944,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
if (guards.isEmpty())
{
warn(yyFileName,yyLineNr,
- "found @endif without matching start command");
+ "found \\endif without matching start command");
}
else
{
@@ -1962,7 +1962,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
if (guards.isEmpty())
{
warn(yyFileName,yyLineNr,
- "found @else without matching start command");
+ "found \\else without matching start command");
}
else
{
@@ -1979,7 +1979,7 @@ RCSTAG "$"{ID}":"[^\n$]+"$"
if (guards.isEmpty())
{
warn(yyFileName,yyLineNr,
- "found @elseif without matching start command");
+ "found \\elseif without matching start command");
}
else
{