From e2aae77981716d5234af8aa2d9aac68db8a161ed Mon Sep 17 00:00:00 2001 From: albert-github Date: Sat, 17 Oct 2020 12:54:54 +0200 Subject: 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. --- src/doxygen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } } -- cgit v0.12