- Added '--remove-claims' switch to cut off all existing claims.
This commit is contained in:
@@ -74,6 +74,7 @@ switchesInit (int argc, char **argv)
|
||||
// Misc
|
||||
switches.switchP = 0; // multi-purpose parameter
|
||||
switches.experimental = 0; // experimental stuff defaults to 0, whatever that means.
|
||||
switches.removeclaims = false; // default: leave claims from spdl file
|
||||
|
||||
// Output
|
||||
switches.output = SUMMARY; // default is to show a summary
|
||||
@@ -378,6 +379,22 @@ switcher (const int process, int index)
|
||||
}
|
||||
}
|
||||
|
||||
if (detect (' ', "remove-claims", 0))
|
||||
{
|
||||
if (!process)
|
||||
{
|
||||
/* discourage:
|
||||
*
|
||||
* Causes all existing claims in the specification to be skipped.
|
||||
*/
|
||||
}
|
||||
else
|
||||
{
|
||||
switches.removeclaims = true;
|
||||
return index;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==================
|
||||
* Bounding options
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user