diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-10-19 11:31:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 11:31:00 (GMT) |
commit | ade26d54258e932274b2605bdc67ca45af4b398a (patch) | |
tree | f161f9a162e56390e4b661216d4e94e756c31974 /src | |
parent | 169d71426d1a42ec294c451af5f901620e6d89e5 (diff) | |
parent | e2aae77981716d5234af8aa2d9aac68db8a161ed (diff) | |
download | Doxygen-ade26d54258e932274b2605bdc67ca45af4b398a.zip Doxygen-ade26d54258e932274b2605bdc67ca45af4b398a.tar.gz Doxygen-ade26d54258e932274b2605bdc67ca45af4b398a.tar.bz2 |
Merge pull request #8112 from albert-github/feature/bug_ext_map_msg
Confusing message for extension mapping for extension with starting dot.
Diffstat (limited to 'src')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index a47b525..7c350d4 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()); } } |