E9 - Typo

- In one of the dumbest typos yet, I entered "fasle" instead of "false"
  and the copy/pasted it around.
This commit is contained in:
Paul Beckingham 2011-08-14 10:04:04 -04:00
parent 5a95b96631
commit f3f6cd260a
3 changed files with 8 additions and 23 deletions

View file

@ -463,18 +463,6 @@ void Command::modify_task (
task.removeTag (value);
}
/*
// Words and operators are aggregated into a description.
else if (arg->_category == "word" ||
arg->_category == "op")
{
if (description.length ())
description += " ";
description += arg->_raw;
}
*/
// Substitutions.
else if (arg->_category == "subst")
{
@ -485,13 +473,6 @@ void Command::modify_task (
task.substitute (from, to, global);
}
/*
// Any additional argument types are indicative of a failure in
// A3::extract_modifications.
else
throw format (STRING_CMD_MOD_UNEXPECTED, arg->_raw);
*/
// Anything else is essentially downgraded to 'word' and considered part of
// the description.
else