summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-08-27 07:21:50 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-08-27 07:21:50 (GMT)
commitc375fe1a8509c3a29db0fa56451271d3b442e429 (patch)
tree92f28f81bbe63b90f1adc1d44a9d407d76e8d8b6 /src
parentf2935bef5175832594812a11c3b73f169a28a94b (diff)
parentfac9a7ce54f68fe7ba3f624f4ea16a200034b763 (diff)
downloadDoxygen-c375fe1a8509c3a29db0fa56451271d3b442e429.zip
Doxygen-c375fe1a8509c3a29db0fa56451271d3b442e429.tar.gz
Doxygen-c375fe1a8509c3a29db0fa56451271d3b442e429.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
Diffstat (limited to 'src')
-rw-r--r--src/doxygen.cpp2
-rw-r--r--src/fortranscanner.l2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 14d34c0..972d758 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -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 an 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");
diff --git a/src/fortranscanner.l b/src/fortranscanner.l
index 3ed0031..327febf 100644
--- a/src/fortranscanner.l
+++ b/src/fortranscanner.l
@@ -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;