summaryrefslogtreecommitdiffstats
path: root/src/scanner.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-02-04 18:31:01 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-02-04 18:31:01 (GMT)
commit64ac36480f407145d8fe1e96ea4cf8f7e30285d5 (patch)
treec2ef84b9d62f4d097db1887691fb9ac2a4814f9e /src/scanner.l
parent8a31e77445a94277151666380860defedcc3838d (diff)
downloadDoxygen-64ac36480f407145d8fe1e96ea4cf8f7e30285d5.zip
Doxygen-64ac36480f407145d8fe1e96ea4cf8f7e30285d5.tar.gz
Doxygen-64ac36480f407145d8fe1e96ea4cf8f7e30285d5.tar.bz2
Bug 136299 - attributes to <p> tag get lost
Besides the `p` tag there were a number of other tags were also the attributes were lost: - `br` - `hr` - `a` in case of used as an anchor i.e. with the `name=` attribute In case of a `caption` with a `table` and no `id=` attribute with the `caption` there was still an anchor generated In scanner.l the warnings message was a bit unclear.
Diffstat (limited to 'src/scanner.l')
-rw-r--r--src/scanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index cad997e..3726023 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -6732,7 +6732,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
}
<DocCopyBlock><<EOF>> {
warn(yyFileName,yyLineNr,
- "reached end of file while inside a %s block!\n"
+ "reached end of file while inside a `%s' block!\n"
"The command that should end the block seems to be missing!\n",
docBlockName.data());
yyterminate();