Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
0b615342
Commit
0b615342
authored
Dec 22, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabled enter/exit printing for doctokenizer (produced too much noise)
parent
d1ed20c4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
doctokenizer.l
src/doctokenizer.l
+10
-10
No files found.
src/doctokenizer.l
View file @
0b615342
...
@@ -321,9 +321,9 @@ static int yyread(char *buf,int max_size)
...
@@ -321,9 +321,9 @@ static int yyread(char *buf,int max_size)
}
}
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
#define REAL_YY_DECL int doctokenizerYYlex (void)
//
#define REAL_YY_DECL int doctokenizerYYlex (void)
#define YY_DECL static int local_doctokinizer(void)
//
#define YY_DECL static int local_doctokinizer(void)
#define LOCAL_YY_DECL local_doctokinizer()
//
#define LOCAL_YY_DECL local_doctokinizer()
%}
%}
...
@@ -1505,13 +1505,13 @@ void doctokenizerYYendAutoList()
...
@@ -1505,13 +1505,13 @@ void doctokenizerYYendAutoList()
g_autoListLevel--;
g_autoListLevel--;
}
}
REAL_YY_DECL
//
REAL_YY_DECL
{
//
{
printlex(yy_flex_debug, TRUE, __FILE__, g_fileName);
//
printlex(yy_flex_debug, TRUE, __FILE__, g_fileName);
int retval = LOCAL_YY_DECL;
//
int retval = LOCAL_YY_DECL;
printlex(yy_flex_debug, FALSE, __FILE__, g_fileName);
//
printlex(yy_flex_debug, FALSE, __FILE__, g_fileName);
return retval;
//
return retval;
}
//
}
#if !defined(YY_FLEX_SUBMINOR_VERSION)
#if !defined(YY_FLEX_SUBMINOR_VERSION)
extern "C" { // some bogus code to keep the compiler happy
extern "C" { // some bogus code to keep the compiler happy
void doctokenizerYYdummy() { yy_flex_realloc(0,0); }
void doctokenizerYYdummy() { yy_flex_realloc(0,0); }
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment