Rename internal is_ascii_char to is_ascii_alphabet_char
This commit is contained in:
@ -1187,7 +1187,7 @@ void TextEdit::_notification(int p_what) {
|
||||
}
|
||||
|
||||
if (!clipped && lookup_symbol_word.length() != 0) { // Highlight word
|
||||
if (is_ascii_char(lookup_symbol_word[0]) || lookup_symbol_word[0] == '_' || lookup_symbol_word[0] == '.') {
|
||||
if (is_ascii_alphabet_char(lookup_symbol_word[0]) || lookup_symbol_word[0] == '_' || lookup_symbol_word[0] == '.') {
|
||||
int lookup_symbol_word_col = _get_column_pos_of_word(lookup_symbol_word, str, SEARCH_MATCH_CASE | SEARCH_WHOLE_WORDS, 0);
|
||||
int lookup_symbol_word_len = lookup_symbol_word.length();
|
||||
while (lookup_symbol_word_col != -1) {
|
||||
|
||||
Reference in New Issue
Block a user