summaryrefslogtreecommitdiffstats
path: root/src/doctokenizer.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-12-22 12:58:25 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-12-22 12:58:25 (GMT)
commit0b615342f0a24fbf02cc9fa94550cf34d230425b (patch)
tree1dfbf5fd70a490511f8a26c325162e82dc0efa51 /src/doctokenizer.l
parentd1ed20c4c9a04f7995b82f8628908e3c34fd054a (diff)
downloadDoxygen-0b615342f0a24fbf02cc9fa94550cf34d230425b.zip
Doxygen-0b615342f0a24fbf02cc9fa94550cf34d230425b.tar.gz
Doxygen-0b615342f0a24fbf02cc9fa94550cf34d230425b.tar.bz2
Disabled enter/exit printing for doctokenizer (produced too much noise)
Diffstat (limited to 'src/doctokenizer.l')
-rw-r--r--src/doctokenizer.l20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l
index a6276af..d018450 100644
--- a/src/doctokenizer.l
+++ b/src/doctokenizer.l
@@ -321,9 +321,9 @@ static int yyread(char *buf,int max_size)
}
//--------------------------------------------------------------------------
-#define REAL_YY_DECL int doctokenizerYYlex (void)
-#define YY_DECL static int local_doctokinizer(void)
-#define LOCAL_YY_DECL local_doctokinizer()
+//#define REAL_YY_DECL int doctokenizerYYlex (void)
+//#define YY_DECL static int local_doctokinizer(void)
+//#define LOCAL_YY_DECL local_doctokinizer()
%}
@@ -1505,13 +1505,13 @@ void doctokenizerYYendAutoList()
g_autoListLevel--;
}
-REAL_YY_DECL
-{
- printlex(yy_flex_debug, TRUE, __FILE__, g_fileName);
- int retval = LOCAL_YY_DECL;
- printlex(yy_flex_debug, FALSE, __FILE__, g_fileName);
- return retval;
-}
+//REAL_YY_DECL
+//{
+// printlex(yy_flex_debug, TRUE, __FILE__, g_fileName);
+// int retval = LOCAL_YY_DECL;
+// printlex(yy_flex_debug, FALSE, __FILE__, g_fileName);
+// return retval;
+//}
#if !defined(YY_FLEX_SUBMINOR_VERSION)
extern "C" { // some bogus code to keep the compiler happy
void doctokenizerYYdummy() { yy_flex_realloc(0,0); }