diff options
author | albert-github <albert.tests@gmail.com> | 2019-12-28 13:13:14 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-12-28 13:13:14 (GMT) |
commit | ece9bb503529d92e366554c6852d868d48ada8cb (patch) | |
tree | 92e1667d09cc67609fcae2c3ea90ea8ba45b2850 /src/configimpl.l | |
parent | 4bc238039ac87cdad9bb84ea10b94ba006414009 (diff) | |
download | Doxygen-ece9bb503529d92e366554c6852d868d48ada8cb.zip Doxygen-ece9bb503529d92e366554c6852d868d48ada8cb.tar.gz Doxygen-ece9bb503529d92e366554c6852d868d48ada8cb.tar.bz2 |
Adding check on configuration setting EXTENSION_MAPPING
In #7419 the EXTENSION_MAPPING test was omitted
Diffstat (limited to 'src/configimpl.l')
-rw-r--r-- | src/configimpl.l | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/configimpl.l b/src/configimpl.l index 4da1634..840213c 100644 --- a/src/configimpl.l +++ b/src/configimpl.l @@ -1541,6 +1541,9 @@ void Config::checkAndCorrect() s=aliasList.next(); } + // check EXTENSION_MAPPING + checkList(Config_getList(EXTENSION_MAPPING),"EXTENSION_MAPPING",TRUE,TRUE); + // check FILTER_PATTERNS checkList(Config_getList(FILTER_PATTERNS),"FILTER_PATTERNS",TRUE,TRUE); |