mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Merge branch '2.4.3' into lexer2
This commit is contained in:
commit
24a1cbefe9
49 changed files with 876 additions and 850 deletions
|
@ -54,7 +54,7 @@ int CmdExport::execute (std::string& output)
|
|||
// Apply filter.
|
||||
Filter filter;
|
||||
std::vector <Task> filtered;
|
||||
filter.subset (filtered);
|
||||
filter.subset (filtered, false);
|
||||
|
||||
// Obey 'limit:N'.
|
||||
int rows = 0;
|
||||
|
|
|
@ -135,7 +135,10 @@ CmdCompletionVersion::CmdCompletionVersion ()
|
|||
int CmdCompletionVersion::execute (std::string& output)
|
||||
{
|
||||
#ifdef HAVE_COMMIT
|
||||
output = COMMIT;
|
||||
output = std::string (VERSION)
|
||||
+ std::string (" (")
|
||||
+ std::string (COMMIT)
|
||||
+ std::string (")");
|
||||
#else
|
||||
output = VERSION;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue