mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug #1154
- Fixed bug #1154, which now allows priorities to be specified in any case.
This commit is contained in:
parent
650c6cf6bb
commit
21704e6705
2 changed files with 4 additions and 1 deletions
|
@ -65,6 +65,7 @@ Bugs
|
||||||
left-justified (thanks to Steve Rader).
|
left-justified (thanks to Steve Rader).
|
||||||
+ Fixed bug #1150, which referenced deprecated features in the tutorial man
|
+ Fixed bug #1150, which referenced deprecated features in the tutorial man
|
||||||
page (thanks to Benjamin Weber).
|
page (thanks to Benjamin Weber).
|
||||||
|
+ Fixed bug #1154, which now allows priorities to be specified in any case.
|
||||||
+ Improved hyphenation by splitting on commas (even if no whitespace after).
|
+ Improved hyphenation by splitting on commas (even if no whitespace after).
|
||||||
Leads to better output of, for example, 'task show', where comma-separated
|
Leads to better output of, for example, 'task show', where comma-separated
|
||||||
lists are common.
|
lists are common.
|
||||||
|
|
|
@ -534,7 +534,9 @@ void E9::operator_equal (
|
||||||
}
|
}
|
||||||
|
|
||||||
// Case-insensitive comparison for status. Fixes #1110.
|
// Case-insensitive comparison for status. Fixes #1110.
|
||||||
else if (left._raw == "status")
|
// Also priority, fixing #1154.
|
||||||
|
else if (left._raw == "status" ||
|
||||||
|
left._raw == "priority")
|
||||||
{
|
{
|
||||||
result._value = compare (left._value, right._value, false)
|
result._value = compare (left._value, right._value, false)
|
||||||
? "true"
|
? "true"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue