summaryrefslogtreecommitdiffstats
path: root/src/commentscan.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2005-11-09 21:17:04 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2005-11-09 21:17:04 (GMT)
commit188f7573ef12588a405ee8eed8289dce1a6eed08 (patch)
tree1fb5abcbf32aeccbd67ec595f3d19833380001c6 /src/commentscan.l
parent32557464b53467b2819e3fb820a7bbc459eb3e30 (diff)
downloadDoxygen-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.l4
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 );
}