Rename internal is_ascii_char to is_ascii_alphabet_char

This commit is contained in:
Aaron Franke 2024-04-20 02:36:41 -07:00
parent 4a0160241f
commit b1f5e9fe3a
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
7 changed files with 10 additions and 10 deletions

View file

@ -313,7 +313,7 @@ Dictionary CodeHighlighter::_get_line_syntax_highlighting_impl(int p_line) {
}
}
if (!in_word && (is_ascii_char(str[j]) || is_underscore(str[j])) && !is_number) {
if (!in_word && (is_ascii_alphabet_char(str[j]) || is_underscore(str[j])) && !is_number) {
in_word = true;
}