Bug #414 - Tags filtering not working with unicode characters
- Fixed bug #414, that caused filtering on the presence or absence of tags containing Unicode characters to fail (thanks to Michal Josífko). + + Fixed bug #414, that caused filtering on the presence or absence of tags + containing Unicode characters to fail (thanks to Michal Josífko). ------ old releases ------------------------------
This commit is contained in:
@@ -127,13 +127,13 @@ static fileType determineFileType (const std::vector <std::string>& lines)
|
||||
// +project
|
||||
if (words[w].length () > 1 &&
|
||||
words[w][0] == '+' &&
|
||||
isalnum (words[w][1]))
|
||||
!isspace (words[w][1]))
|
||||
return todo_sh_2_0;
|
||||
|
||||
// @context
|
||||
if (words[w].length () > 1 &&
|
||||
words[w][0] == '@' &&
|
||||
isalnum (words[w][1]))
|
||||
!isspace (words[w][1]))
|
||||
return todo_sh_2_0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user