- Fixed bug #929, which corrected argument handling for aliases.

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Uli Martens 2012-02-12 08:15:45 -05:00 committed by Paul Beckingham
parent 53ac325705
commit 0f60e8c758
2 changed files with 5 additions and 0 deletions

View file

@ -247,6 +247,8 @@
+ Fixed bug #910, which caused unexpected behavior when duplicating a recurring
task (thanks to Jennifer Cormier).
+ 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.
+ Fixed bug that required the '%YAML' prologue in a YAML import.

View file

@ -399,6 +399,9 @@ void A3::resolve_aliases ()
this->push_back (Arg (*e));
expanded.clear ();
// The push_back destroyed categorization, redo that now.
categorize ();
}
}
while (something && --safety_valve > 0);