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
54e87756
Commit
54e87756
authored
Jul 16, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed problem handling C comments inside a \code block.
parent
a07d3d48
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1284 deletions
+4
-1284
.gitignore
.gitignore
+1
-0
translator_report.txt
doc/translator_report.txt
+0
-1281
scanner.l
src/scanner.l
+3
-3
No files found.
.gitignore
View file @
54e87756
...
...
@@ -48,3 +48,4 @@ Makefile
/src/vhdlparser.cpp
/src/vhdlparser.h
/src/vhdlscanner.cpp
/doc/translator_report.txt
doc/translator_report.txt
deleted
100644 → 0
View file @
a07d3d48
This diff is collapsed.
Click to expand it.
src/scanner.l
View file @
54e87756
...
...
@@ -6209,12 +6209,12 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
docBlock+=indent;
}
}
<DocCopyBlock>^{B}*
"*"+
/{BN}* { // start of a comment line
<DocCopyBlock>^{B}*
+"*"
/{BN}* { // start of a comment line
if (docBlockName=="code")
{
QCString indent;
indent.fill(' ',computeIndent(yytext,0));
docBlock+=indent;
indent.fill(' ',computeIndent(yytext,0)
-1
);
docBlock+=indent
+"*"
;
}
else
{
...
...
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