summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrkawulak <Robert.Kawulak@gmail.com>2014-03-17 02:50:55 (GMT)
committerrkawulak <Robert.Kawulak@gmail.com>2014-03-17 02:50:55 (GMT)
commit68cf977ee72f8914678e30e3a88f0e9d90703418 (patch)
tree133fdc0a5139263fd2ed22d7145fda79ee5c49f5
parent683ef76f7bf1ba929f9c263064bb5f6c8e377275 (diff)
downloadDoxygen-68cf977ee72f8914678e30e3a88f0e9d90703418.zip
Doxygen-68cf977ee72f8914678e30e3a88f0e9d90703418.tar.gz
Doxygen-68cf977ee72f8914678e30e3a88f0e9d90703418.tar.bz2
Update doctokenizer.l
Removed ':' from the end of the section title for an RCS tag - it was inconsistent with sections created using other commands.
-rw-r--r--src/doctokenizer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l
index a4e6c4a..b7c0342 100644
--- a/src/doctokenizer.l
+++ b/src/doctokenizer.l
@@ -627,7 +627,7 @@ REFWORD {LABELID}|{REFWORD2}|{REFWORD3}|{LNKWORD2}
<St_Para>"$"{ID}":"[^\n$]+"$" { /* RCS tag */
QCString tagName(yytext+1);
int index=tagName.find(':');
- g_token->name = tagName.left(index+1);
+ g_token->name = tagName.left(index);
g_token->text = tagName.mid(index+2,tagName.length()-index-3);
return TK_RCSTAG;
}