ENH: Improve format of if() command messages

Errors and warnings from the if() command always display the argument
list given to the command followed by an explanation of the problem.
This moves the argument list into a pre-formatted block and follows it
with a paragraph-form explanation.  The result looks cleaner.
This commit is contained in:
Brad King 2009-06-17 14:18:08 -04:00
parent c790b1fabb
commit 3c856405e4
1 changed files with 4 additions and 6 deletions

View File

@ -90,7 +90,7 @@ IsFunctionBlocked(const cmListFileFunction& lff,
if (errorString.size())
{
std::string err = "had incorrect arguments: ";
std::string err = "given arguments\n ";
unsigned int i;
for(i =0; i < this->Functions[c].Arguments.size(); ++i)
{
@ -99,9 +99,8 @@ IsFunctionBlocked(const cmListFileFunction& lff,
err += (this->Functions[c].Arguments[i].Quoted?"\"":"");
err += " ";
}
err += "(";
err += "\n";
err += errorString;
err += ").";
mf.IssueMessage(messType, err);
if (messType == cmake::FATAL_ERROR)
{
@ -181,7 +180,7 @@ bool cmIfCommand
if (errorString.size())
{
std::string err = "had incorrect arguments: ";
std::string err = "given arguments\n ";
unsigned int i;
for(i =0; i < args.size(); ++i)
{
@ -190,9 +189,8 @@ bool cmIfCommand
err += (args[i].Quoted?"\"":"");
err += " ";
}
err += "(";
err += "\n";
err += errorString;
err += ").";
if (status == cmake::FATAL_ERROR)
{
this->SetError(err.c_str());