summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-09-15 10:30:40 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-09-15 10:30:40 (GMT)
commita88b298bee89f001072c80e32e04dfd855d05c58 (patch)
tree0a1d06808ba9db730e2016bd5150116e298c38c4 /src/doxygen.cpp
parent0fc06d657d596adcc289a5f228973ea268efd66d (diff)
downloadDoxygen-a88b298bee89f001072c80e32e04dfd855d05c58.zip
Doxygen-a88b298bee89f001072c80e32e04dfd855d05c58.tar.gz
Doxygen-a88b298bee89f001072c80e32e04dfd855d05c58.tar.bz2
Incorrect duplicate code for Fortran fixed/free recognition
There were 2 routines to recognize whether Fortran code was Fixed of Free format code, though the version in `commentcnv.l` didn't take the settings of `EXTENSION_MAPPING` into account which might lead to incorrect recognition of the format, this has been corrected.
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 0832e5c..a8cda22 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -10838,14 +10838,14 @@ void parseInput()
if (!dir.mkdir(outputDirectory))
{
err("tag OUTPUT_DIRECTORY: Output directory '%s' does not "
- "exist and cannot be created\n",outputDirectory.data());
+ "exist and cannot be created\n",outputDirectory.data());
cleanUpDoxygen();
exit(1);
}
else
{
- msg("Notice: Output directory '%s' does not exist. "
- "I have created it for you.\n", outputDirectory.data());
+ msg("Notice: Output directory '%s' does not exist. "
+ "I have created it for you.\n", outputDirectory.data());
}
dir.cd(outputDirectory);
}