summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2005-03-15 19:18:42 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2005-03-15 19:18:42 (GMT)
commit2fcc16df64d2af93fc0bb01617f8531116118e8d (patch)
tree504aa22719248b74962bee0517b645cfabab52d2 /src/doctokenizer.l
parent5a6400835bc92fb56ef65126785cbe75f092f2d1 (diff)
downloadDoxygen-2fcc16df64d2af93fc0bb01617f8531116118e8d.zip
Doxygen-2fcc16df64d2af93fc0bb01617f8531116118e8d.tar.gz
Doxygen-2fcc16df64d2af93fc0bb01617f8531116118e8d.tar.bz2
Release-1.4.1-20050315
Diffstat (limited to 'src/doctokenizer.l')
-rw-r--r--src/doctokenizer.l10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l
index b92ca77..18c3060 100644
--- a/src/doctokenizer.l
+++ b/src/doctokenizer.l
@@ -682,22 +682,22 @@ REFWORD ("#"|"::")?({ID}("."|"#"|"::"|"-"))*{ID}{FUNCARG}?
return 0;
}
-<St_Ref>{REFWORD} {
+<St_Ref>{REFWORD} { // label to refer to
g_token->name=yytext;
return TK_WORD;
}
-<St_Ref>{BLANK}+ {
+<St_Ref>{BLANK} { // white space
unput(' ');
return 0;
}
-<St_Ref>{WS}+"\"" {
+<St_Ref>{WS}+"\"" { // white space following by quoted string
BEGIN(St_Ref2);
}
-<St_Ref>\n {
+<St_Ref>\n { // new line
unput(*yytext);
return 0;
}
-<St_Ref>. {
+<St_Ref>. { // any other character
unput(*yytext);
return 0;
}