summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-10-17 10:54:54 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-10-17 10:54:54 (GMT)
commite2aae77981716d5234af8aa2d9aac68db8a161ed (patch)
tree0653f78261cf428284515a8ac958863cca7eb293
parent3ef7ff7ff6e93f2c35a0864283fae5be3975c956 (diff)
downloadDoxygen-e2aae77981716d5234af8aa2d9aac68db8a161ed.zip
Doxygen-e2aae77981716d5234af8aa2d9aac68db8a161ed.tar.gz
Doxygen-e2aae77981716d5234af8aa2d9aac68db8a161ed.tar.bz2
Confusing message for extension mapping for extension with starting dot.
When having the settings: ``` EXTENSION_MAPPING = .h=C++ \ .inl=C++ ``` we get the, confusing, message with 2 dots: ``` Adding custom extension mapping: ..h will be treated as language c++ Adding custom extension mapping: ..inl will be treated as language c++ ``` instead of ``` ``` this has been corrected and made inline with the error in case of a non-supported language.
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 7970441..4d0ae19 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -10533,7 +10533,7 @@ void adjustConfiguration()
}
else
{
- msg("Adding custom extension mapping: .%s will be treated as language %s\n",
+ msg("Adding custom extension mapping: '%s' will be treated as language '%s'\n",
ext.data(),language.data());
}
}