mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-20 13:23:08 +02:00
TW-1549
- TW-1549 task annotate hangs with specific text pattern (thanks to Alexandre de Verteuil).
This commit is contained in:
parent
ad89a90d12
commit
ea78200ae3
4 changed files with 71 additions and 0 deletions
|
@ -387,6 +387,12 @@ bool Lexer::token (std::string& result, Type& type)
|
|||
result += utf8_character (_n0);
|
||||
shift ();
|
||||
}
|
||||
else
|
||||
{
|
||||
result += utf8_character (hex_to_int (_n0, _n1, _n2, _n3));
|
||||
shift ();
|
||||
type = quote ? typeString : typeIdentifier;
|
||||
}
|
||||
break;
|
||||
|
||||
case typeExponent:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue