summaryrefslogtreecommitdiffstats
path: root/src/scanner.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-02-02 12:51:34 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-02-02 12:51:34 (GMT)
commit3088ae34eda1fbeab287e2271a7f1804de2c784f (patch)
tree33c72b9dc733186b2207bc01552fa9aab429b345 /src/scanner.l
parent9778b72f5641d98f98a1851fc93148f9da258a74 (diff)
downloadDoxygen-3088ae34eda1fbeab287e2271a7f1804de2c784f.zip
Doxygen-3088ae34eda1fbeab287e2271a7f1804de2c784f.tar.gz
Doxygen-3088ae34eda1fbeab287e2271a7f1804de2c784f.tar.bz2
Problem with just an asterisks on a `\code` line
Problem occurs when a line with just a `*` is followed by another line with an `# and some comment. The test on newline has been removed. Problem is most likely a consequence of Bug #5288 - Asterisks in comment wrongly displayed for @code, i.e. 23f337e64b95d3fa08f32980c866669b190c872f
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 d2c7072..cad997e 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -6651,7 +6651,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
docBlock+=indent;
}
}
-<DocCopyBlock>^{B}*"*"+/{BN}+"*"{BN}* { // start of a comment line with two *'s
+<DocCopyBlock>^{B}*"*"+/{B}+"*"{BN}* { // start of a comment line with two *'s
if (docBlockName=="code")
{
QCString indent;