We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c25875 commit 198664fCopy full SHA for 198664f
training/validator.cpp
@@ -177,7 +177,9 @@ bool Validator::IsVirama(char32 unicode) {
177
// Returns true if the given UTF-32 unicode is a vedic accent.
178
/* static */
179
bool Validator::IsVedicAccent(char32 unicode) {
180
- return 0x1cd0 <= unicode && unicode < 0x1d00;
+ return 0x1cd0 <= unicode && unicode < 0x1d00 ||
181
+ 0xa8e0 <= unicode && unicode <= 0xa8f7 ||
182
+ 0x951 <= unicode && unicode <= 0x954;
183
}
184
185
// Returns true if the script is one that uses subscripts for conjuncts.
0 commit comments