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
c375fe1a
Commit
c375fe1a
authored
Aug 27, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:doxygen/doxygen
parents
f2935bef
fac9a7ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
doxygen.cpp
src/doxygen.cpp
+1
-1
fortranscanner.l
src/fortranscanner.l
+1
-1
No files found.
src/doxygen.cpp
View file @
c375fe1a
...
...
@@ -9780,7 +9780,7 @@ static void usage(const char *name)
msg
(
" RTF: %s -w rtf styleSheetFile
\n
"
,
name
);
msg
(
" HTML: %s -w html headerFile footerFile styleSheetFile [configFile]
\n
"
,
name
);
msg
(
" LaTeX: %s -w latex headerFile footerFile styleSheetFile [configFile]
\n\n
"
,
name
);
msg
(
"6) Use doxygen to generate a
n
rtf extensions file
\n
"
);
msg
(
"6) Use doxygen to generate a rtf extensions file
\n
"
);
msg
(
" RTF: %s -e rtf extensionsFile
\n\n
"
,
name
);
msg
(
"If -s is specified the comments of the configuration items in the config file will be omitted.
\n
"
);
msg
(
"If configName is omitted `Doxyfile' will be used as a default.
\n\n
"
);
...
...
src/fortranscanner.l
View file @
c375fe1a
...
...
@@ -1998,7 +1998,7 @@ static void addSubprogram(const char *text)
subrCurrent.prepend(current);
current->section = Entry::FUNCTION_SEC ;
QCString subtype = text; subtype=subtype.lower().stripWhiteSpace();
functionLine =
subtype=="function"
;
functionLine =
(subtype.find("function") != -1)
;
current->type += " " + subtype;
current->type = current->type.stripWhiteSpace();
current->fileName = yyFileName;
...
...
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