From 0f60e8c758f060bdfba73696c2929956a8aeb1eb Mon Sep 17 00:00:00 2001 From: Uli Martens Date: Sun, 12 Feb 2012 08:15:45 -0500 Subject: [PATCH] Bug #929 - Fixed bug #929, which corrected argument handling for aliases. Signed-off-by: Paul Beckingham --- ChangeLog | 2 ++ src/A3.cpp | 3 +++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index ba144bde6..ab60b9b5e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/src/A3.cpp b/src/A3.cpp index 5c3bb0010..41cc1f947 100644 --- a/src/A3.cpp +++ b/src/A3.cpp @@ -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);