summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-01-04 09:37:53 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-01-04 09:37:53 (GMT)
commit5c321cbb6359bc1bb875729c08beba2edc084500 (patch)
tree3a7b45f8ca3e73e241b22d69e861b72802779f3f /src/doctokenizer.l
parent97342f92e111d7aa3e423a128379a6018820ce6c (diff)
downloadDoxygen-5c321cbb6359bc1bb875729c08beba2edc084500.zip
Doxygen-5c321cbb6359bc1bb875729c08beba2edc084500.tar.gz
Doxygen-5c321cbb6359bc1bb875729c08beba2edc084500.tar.bz2
Bug 742151 - Bogus warning: citelist: Unexpected new line character
Diffstat (limited to 'src/doctokenizer.l')
-rw-r--r--src/doctokenizer.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l
index d018450..f30e829 100644
--- a/src/doctokenizer.l
+++ b/src/doctokenizer.l
@@ -1150,8 +1150,8 @@ REFWORD {LABELID}|{REFWORD2}|{REFWORD3}|{REFWORD4}
<St_Comment>"-->" { /* end of html comment */
BEGIN(g_commentState);
}
-<St_Comment>[^-\n]+ /* inside html comment */
-<St_Comment>. /* inside html comment */
+<St_Comment>[^-]+ /* inside html comment */
+<St_Comment>. /* inside html comment */
/* State for skipping title (all chars until the end of the line) */