mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Parser
- ::getOverrides scans all nodes, and must manually skip TERMINATOR.
This commit is contained in:
parent
075eb4ca74
commit
e2b6e9b65e
1 changed files with 4 additions and 0 deletions
|
@ -518,6 +518,10 @@ void Parser::getOverrides (
|
|||
std::vector <Tree*>::iterator i;
|
||||
for (i = nodes.begin (); i != nodes.end (); ++i)
|
||||
{
|
||||
// Parser override operator.
|
||||
if ((*i)->attribute ("raw") == "--")
|
||||
break;
|
||||
|
||||
if ((*i)->hasTag ("RC"))
|
||||
{
|
||||
rc = File ((*i)->attribute ("file"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue