diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-01-26 21:10:54 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-01-26 21:10:54 (GMT) |
commit | 5d7d90c39506fb7a19514dc4abd540018deeaaf6 (patch) | |
tree | 76af52671423a9b083a05f78c82f3435635ab400 /src/scanner.l | |
parent | afb84237b8c3024f2f35346ba3ee4532e1a8b507 (diff) | |
download | Doxygen-5d7d90c39506fb7a19514dc4abd540018deeaaf6.zip Doxygen-5d7d90c39506fb7a19514dc4abd540018deeaaf6.tar.gz Doxygen-5d7d90c39506fb7a19514dc4abd540018deeaaf6.tar.bz2 |
Release-1.3-rc2-20030126
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 5 |
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); } */ |