mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
TW-1778: Unicode strings are truncated in task description
- Thanks to Andrew, bjonnh, OKOMPer, Vladimir.
This commit is contained in:
parent
394b7174cf
commit
d025f3deb6
3 changed files with 7 additions and 1 deletions
4
AUTHORS
4
AUTHORS
|
@ -131,6 +131,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
|
||||||
Lynoure Braakman
|
Lynoure Braakman
|
||||||
Sebastien Badia
|
Sebastien Badia
|
||||||
Ran Benita
|
Ran Benita
|
||||||
|
Vladimir
|
||||||
|
|
||||||
Thanks to the following, who submitted detailed bug reports and excellent
|
Thanks to the following, who submitted detailed bug reports and excellent
|
||||||
suggestions:
|
suggestions:
|
||||||
|
@ -296,3 +297,6 @@ suggestions:
|
||||||
Ellington Santos
|
Ellington Santos
|
||||||
george js
|
george js
|
||||||
E. Manuel Cerr'on Angeles
|
E. Manuel Cerr'on Angeles
|
||||||
|
Andrew
|
||||||
|
bjonnh
|
||||||
|
OKOMper
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
(thanks to Paul Beckingham)
|
(thanks to Paul Beckingham)
|
||||||
- TW-1772 Implementation of circular dependency detection is
|
- TW-1772 Implementation of circular dependency detection is
|
||||||
inefficient (thanks to Michael Meier).
|
inefficient (thanks to Michael Meier).
|
||||||
|
- TW-1778 Unicode strings are truncated in task description
|
||||||
|
(thanks to Andrew, bjonnh, OKOMPer, Vladimir).
|
||||||
- TW-1788 Closing a reopened task does not update the end time
|
- TW-1788 Closing a reopened task does not update the end time
|
||||||
(thanks to Ralph Bean).
|
(thanks to Ralph Bean).
|
||||||
- TW-1791 taskrc(5) manpage: spurious "pri." in rule.precedence.color
|
- TW-1791 taskrc(5) manpage: spurious "pri." in rule.precedence.color
|
||||||
|
|
|
@ -248,7 +248,7 @@ bool extractLine (
|
||||||
// Premature EOL.
|
// Premature EOL.
|
||||||
if (character == '\n')
|
if (character == '\n')
|
||||||
{
|
{
|
||||||
line = text.substr (offset, line_length);
|
line = text.substr (offset, prior_cursor - offset);
|
||||||
offset = cursor;
|
offset = cursor;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue