Commit 2013600c authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge branch 'patch-1' of https://github.com/rkawulak/doxygen into rkawulak-patch-1

Conflicts:
	src/doctokenizer.l
parents 10189681 68cf977e
......@@ -628,7 +628,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);
int text_begin = index+2;
int text_end = tagName.length()-1;
if (tagName[text_begin-1]==':') /* check for Subversion fixed-length keyword */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment