summaryrefslogtreecommitdiffstats
path: root/src/scanner.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2003-01-26 21:10:54 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2003-01-26 21:10:54 (GMT)
commitdaa0336ab06f76a07f59499cbc47fd919073749d (patch)
tree76af52671423a9b083a05f78c82f3435635ab400 /src/scanner.l
parent92792d3adc9011f35467341eb535ed3580ddb901 (diff)
downloadDoxygen-daa0336ab06f76a07f59499cbc47fd919073749d.zip
Doxygen-daa0336ab06f76a07f59499cbc47fd919073749d.tar.gz
Doxygen-daa0336ab06f76a07f59499cbc47fd919073749d.tar.bz2
Release-1.3-rc2-20030126
Diffstat (limited to 'src/scanner.l')
-rw-r--r--src/scanner.l5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 778f179..3d30f2d 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -1853,6 +1853,11 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^'\\\n]{1,4}"'"))
current->reset();
}
}
+<FindFields>"[" { // attribute list in IDL
+ squareCount=1;
+ lastSquareContext = YY_START;
+ BEGIN(SkipSquare);
+ }
/*
<FindFieldArg>"," { unput(*yytext); BEGIN(FindFields); }
*/