From: Richard Heck Date: Wed, 5 Nov 2008 19:15:09 +0000 (+0000) Subject: Comments. X-Git-Tag: 1.6.10~2710 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3a9a0fc3e6c49784437eb7b2cba481845b4f5687;p=features.git Comments. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27279 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/BufferParams.cpp b/src/BufferParams.cpp index 875c3c5fb0..f1d009279d 100644 --- a/src/BufferParams.cpp +++ b/src/BufferParams.cpp @@ -1564,7 +1564,7 @@ bool BufferParams::checkModuleConsistency() { LYXERR0("WARNING: Module " << modname << " should already have been dropped!"); continue; } - + // FIXME This test can probably also be dropped, for the same reason. // determine whether some provided module excludes us or we exclude it list::const_iterator pit = provmods.begin(); list::const_iterator pen = provmods.end(); @@ -1572,8 +1572,7 @@ bool BufferParams::checkModuleConsistency() { for (; !excluded && pit != pen; ++pit) { if (!LyXModule::areCompatible(modname, *pit)) { consistent = false; - LYXERR0("Module " << modname << - " dropped becuase it conflicts with provided module " << *pit); + LYXERR0("WARNING: Module " << modname << " should already have been dropped!"); excluded = true; } }