Skip to content

Commit

Permalink
Update doctokenizer.l
Browse files Browse the repository at this point in the history
Removed ':' from the end of the section title for an RCS tag - it was inconsistent with sections created using other commands.
  • Loading branch information
rkwk committed Mar 17, 2014
1 parent 683ef76 commit 68cf977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doctokenizer.l
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 68cf977

Please sign in to comment.