- TW-262 Attribute modifiers not working within parentheses (thanks to Johannes
         Schlatow).
This commit is contained in:
Paul Beckingham 2014-08-31 09:45:42 -04:00
parent ae667a7e9e
commit a894a3dedb
3 changed files with 8 additions and 4 deletions

View file

@ -228,3 +228,5 @@ suggestions:
lolilolicon
Lee Lieske
Peter Vitt
dev-zero

View file

@ -57,6 +57,8 @@
- TW-257 limit: not working properly (thanks to Aikido Guy).
- TW-259 Hyphenated words are split when added (thanks to Ben Boeckel).
- TW-261 Easy to create "not deletable" task (thanks to Jan Kunder).
- TW-262 Attribute modifiers not working within parentheses (thanks to Johannes
Schlatow).
- TW-266 Allow project auto-completion to search completed tasks (thanks to
Kosta Harlan).
- TW-271 Parser still looks for task id even when -- is used (thanks to Jim B).

View file

@ -94,7 +94,7 @@ void Parser::initialize (int argc, const char** argv)
// Create top-level nodes.
for (int i = 0; i < argc; ++i)
{
std::string raw = argv[i];
std::string raw = trim (argv[i]);
Tree* branch = _tree->addBranch (new Tree (format ("arg{1}", i)));
branch->attribute ("raw", raw);
branch->tag ("ORIGINAL");