mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-06 08:27:25 +02:00
Lexer
- Renamed ::split to ::word_split, for clarity and because of the need for a full token split, coming next.
This commit is contained in:
parent
e753473dc4
commit
0af9bbdc03
5 changed files with 18 additions and 18 deletions
|
@ -468,7 +468,7 @@ void Parser::injectDefaults ()
|
|||
// because captureFirst inserts args immediately after the command, and
|
||||
// so has the effect of reversing the list.
|
||||
std::vector <std::string> args;
|
||||
Lexer::split (args, defaultCommand);
|
||||
Lexer::word_split (args, defaultCommand);
|
||||
std::vector <std::string>::reverse_iterator r;
|
||||
for (r = args.rbegin (); r != args.rend (); ++r)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue