mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-25 21:27:19 +02:00
Bug #835
- Fixed bug #835, which prevented hierarchical projects from being recognized.
This commit is contained in:
parent
965e15fe91
commit
e478f6626b
4 changed files with 10 additions and 7 deletions
|
@ -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 ())
|
||||
{
|
||||
/*
|
||||
|
|
|
@ -431,7 +431,6 @@ void Command::modify_task (
|
|||
// Get the column info.
|
||||
Column* column = context.columns[name];
|
||||
|
||||
|
||||
if (value == "")
|
||||
{
|
||||
task.remove (name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue