mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug #440 - Parser fails to simultaneously subst and append
- The code wasn't even trying to apply the substitutions for the append and prepend commands.
This commit is contained in:
parent
36c3cad5a5
commit
2334911b34
2 changed files with 3 additions and 0 deletions
|
@ -1610,6 +1610,7 @@ int handleAppend (std::string &outs)
|
|||
changes += deltaAppend (*other);
|
||||
changes += deltaTags (*other);
|
||||
changes += deltaAttributes (*other);
|
||||
changes += deltaSubstitutions (*other);
|
||||
|
||||
if (taskDiff (before, *other))
|
||||
{
|
||||
|
@ -1686,6 +1687,7 @@ int handlePrepend (std::string &outs)
|
|||
changes += deltaPrepend (*other);
|
||||
changes += deltaTags (*other);
|
||||
changes += deltaAttributes (*other);
|
||||
changes += deltaSubstitutions (*other);
|
||||
|
||||
if (taskDiff (before, *other))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue