- Segfault when 'project:android' is split into 'and' and 'roid' (thanks to
  Richard Boß).
This commit is contained in:
Paul Beckingham 2014-07-07 21:43:09 -04:00
parent af75fa8b05
commit 32566c9844
3 changed files with 5 additions and 2 deletions

View file

@ -222,3 +222,4 @@ suggestions:
Jack
Kevin Ballard
Sitaram Chamarty
Richard Boß

View file

@ -157,6 +157,8 @@
- French localization (thanks to leowzukw).
- Removed deprecated 'report.X.limit' feature.
- Improved bash completion when TASKRC is exported.
- Segfault when 'project:android' is split into 'and' and 'roid' (thanks to
Richard Boß).
------ current release ---------------------------

View file

@ -742,8 +742,8 @@ bool Lexer::is_ident (int c) const
////////////////////////////////////////////////////////////////////////////////
bool Lexer::is_triple_op (int c0, int c1, int c2) const
{
return (c0 == 'a' && c1 == 'n' && c2 == 'd') ||
(c0 == 'x' && c1 == 'o' && c2 == 'r') ||
return (c0 == 'a' && c1 == 'n' && c2 == 'd' && _boundary23) ||
(c0 == 'x' && c1 == 'o' && c2 == 'r' && _boundary23) ||
(c0 == '!' && c1 == '=' && c2 == '=');
}