Commit 68cf977e authored by rkawulak's avatar rkawulak
Browse files

Update doctokenizer.l

Removed ':' from the end of the section title for an RCS tag - it was inconsistent with sections created using other commands.
parent 683ef76f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  		       }