- Fixed bug #835, which prevented hierarchical projects from being recognized.
This commit is contained in:
Paul Beckingham 2011-09-21 00:19:42 -04:00
parent 965e15fe91
commit e478f6626b
4 changed files with 10 additions and 7 deletions

View file

@ -1254,11 +1254,10 @@ bool A3::is_attr (Nibbler& n, Arg& arg)
{
// Both quoted and unquoted Att's are accepted.
// Consider removing this for a stricter parse.
if (n.getQuoted ('"', value) ||
n.getQuoted ('\'', value) ||
n.getName (value) ||
n.getUntilWS (value) ||
n.getUntilEOS (value) ||
if (n.getQuoted ('"', value) ||
n.getQuoted ('\'', value) ||
n.getUntilOneOf (" \t)(", value) ||
n.getUntilEOS (value) ||
n.depleted ())
{
/*

View file

@ -431,7 +431,6 @@ void Command::modify_task (
// Get the column info.
Column* column = context.columns[name];
if (value == "")
{
task.remove (name);