diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-10-17 18:03:21 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-10-17 18:03:21 (GMT) |
commit | 65f47e04daaf7f06da11c64af364e65e60e66387 (patch) | |
tree | 54faf2b759aca5cdc6184168aa676ed669435766 /src/pyscanner.l | |
parent | 3c8148441a129febc5c2b9e4b2b2cbd018ad3b6e (diff) | |
download | Doxygen-65f47e04daaf7f06da11c64af364e65e60e66387.zip Doxygen-65f47e04daaf7f06da11c64af364e65e60e66387.tar.gz Doxygen-65f47e04daaf7f06da11c64af364e65e60e66387.tar.bz2 |
Release-1.5.0
Diffstat (limited to 'src/pyscanner.l')
-rw-r--r-- | src/pyscanner.l | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pyscanner.l b/src/pyscanner.l index 5f7abb0..0a4fbcf 100644 --- a/src/pyscanner.l +++ b/src/pyscanner.l @@ -290,8 +290,8 @@ static void appendDocBlock() { static void handleCommentBlock(const QCString &doc,bool brief) { - //printf("handleCommentBlock(doc=[%s] brief=%d docBlockInBody=%d\n", - // doc.data(),brief,docBlockInBody); + //printf("handleCommentBlock(doc=[%s] brief=%d docBlockInBody=%d docBlockJavaStyle=%d\n", + // doc.data(),brief,docBlockInBody,docBlockJavaStyle); // TODO: Fix me docBlockInBody=FALSE; @@ -310,7 +310,7 @@ static void handleCommentBlock(const QCString &doc,bool brief) yyFileName, // file brief ? current->briefLine : current->docLine, // line of block start docBlockInBody ? FALSE : brief, - docBlockJavaStyle, // javadoc style + FALSE, //docBlockJavaStyle, // javadoc style docBlockInBody, protection, position, @@ -854,7 +854,7 @@ STARTDOCSYMS ^{B}"##"/[^#] ")" { // end of parameter list } - ":" { + ":"{B} { g_specialBlock = TRUE; // expecting a docstring bodyEntry = current; BEGIN( FunctionBody ); |