- TW-1549 task annotate hangs with specific text pattern (thanks to Alexandre
          de Verteuil).
This commit is contained in:
Paul Beckingham 2015-02-24 22:04:05 -05:00
parent ad89a90d12
commit ea78200ae3
4 changed files with 71 additions and 0 deletions

View file

@ -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: