summaryrefslogtreecommitdiff
path: root/Source/cmDefinePropertyCommand.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmDefinePropertyCommand.cxx')
-rw-r--r--Source/cmDefinePropertyCommand.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmDefinePropertyCommand.cxx b/Source/cmDefinePropertyCommand.cxx
index fbdefedeff..86143c7336 100644
--- a/Source/cmDefinePropertyCommand.cxx
+++ b/Source/cmDefinePropertyCommand.cxx
@@ -98,13 +98,11 @@ bool cmDefinePropertyCommand
}
else if(doing == DoingBrief)
{
- doing = DoingNone;
- this->BriefDocs = args[i];
+ this->BriefDocs += args[i];
}
else if(doing == DoingFull)
{
- doing = DoingNone;
- this->FullDocs = args[i];
+ this->FullDocs += args[i];
}
else
{