diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-11-09 21:17:04 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-11-09 21:17:04 (GMT) |
commit | c0b0e4b86db9d2bd699ce2bcd0bca479167a76a6 (patch) | |
tree | 1fb5abcbf32aeccbd67ec595f3d19833380001c6 /src/commentscan.l | |
parent | 79a5fb85eb38d8a4388c9a281a09549e7bcb8b78 (diff) | |
download | Doxygen-c0b0e4b86db9d2bd699ce2bcd0bca479167a76a6.zip Doxygen-c0b0e4b86db9d2bd699ce2bcd0bca479167a76a6.tar.gz Doxygen-c0b0e4b86db9d2bd699ce2bcd0bca479167a76a6.tar.bz2 |
Release-1.4.5-20051109
Diffstat (limited to 'src/commentscan.l')
-rw-r--r-- | src/commentscan.l | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/commentscan.l b/src/commentscan.l index e5830df..76f50f1 100644 --- a/src/commentscan.l +++ b/src/commentscan.l @@ -959,20 +959,17 @@ MAILADR [a-z_A-Z0-9.+\-]+"@"[a-z_A-Z0-9\-]+("."[a-z_A-Z0-9\-]+)+[a-z_A-Z0-9\-] <ReadFormulaShort>{CMD}"f$" { // end of inline formula formulaText+="$"; addOutput(addFormula()); - addOutput(' '); BEGIN(Comment); } <ReadFormulaLong>{CMD}"f]" { // end of block formula formulaText+="\\]"; addOutput(addFormula()); - addOutput(' '); BEGIN(Comment); } <ReadFormulaLong>{CMD}"f}" { // end of custom env formula formulaText+="\\end"; formulaText+=formulaEnv; addOutput(addFormula()); - addOutput(' '); BEGIN(Comment); } <ReadFormulaLong,ReadFormulaShort>[^\\@\n]+ { // any non-special character @@ -1636,7 +1633,6 @@ MAILADR [a-z_A-Z0-9.+\-]+"@"[a-z_A-Z0-9\-]+("."[a-z_A-Z0-9\-]+)+[a-z_A-Z0-9\-] { if (*yytext=='\n') yyLineNr++; addOutput('\n'); - printf("functionProto=%s\n",functionProto.data()); langParser->parsePrototype(functionProto); BEGIN( Comment ); } |