diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2005-11-09 21:17:04 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2005-11-09 21:17:04 (GMT) |
commit | 188f7573ef12588a405ee8eed8289dce1a6eed08 (patch) | |
tree | 1fb5abcbf32aeccbd67ec595f3d19833380001c6 /src/commentscan.l | |
parent | 32557464b53467b2819e3fb820a7bbc459eb3e30 (diff) | |
download | Doxygen-188f7573ef12588a405ee8eed8289dce1a6eed08.zip Doxygen-188f7573ef12588a405ee8eed8289dce1a6eed08.tar.gz Doxygen-188f7573ef12588a405ee8eed8289dce1a6eed08.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 ); } |