mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 13:37:20 +02:00
Bug #929
- Fixed bug #929, which corrected argument handling for aliases. Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
parent
53ac325705
commit
0f60e8c758
2 changed files with 5 additions and 0 deletions
|
@ -247,6 +247,8 @@
|
||||||
+ Fixed bug #910, which caused unexpected behavior when duplicating a recurring
|
+ Fixed bug #910, which caused unexpected behavior when duplicating a recurring
|
||||||
task (thanks to Jennifer Cormier).
|
task (thanks to Jennifer Cormier).
|
||||||
+ Fixed bug #917, which mis-encoded quotes (thanks to Uli Martens).
|
+ Fixed bug #917, which mis-encoded quotes (thanks to Uli Martens).
|
||||||
|
+ Fixed bug #929, which corrected argument handling for aliases (thanks to Uli
|
||||||
|
Martens).
|
||||||
|
|
||||||
# Untracked Bugs, biggest first.
|
# Untracked Bugs, biggest first.
|
||||||
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
||||||
|
|
|
@ -399,6 +399,9 @@ void A3::resolve_aliases ()
|
||||||
this->push_back (Arg (*e));
|
this->push_back (Arg (*e));
|
||||||
|
|
||||||
expanded.clear ();
|
expanded.clear ();
|
||||||
|
|
||||||
|
// The push_back destroyed categorization, redo that now.
|
||||||
|
categorize ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while (something && --safety_valve > 0);
|
while (something && --safety_valve > 0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue