Rename internal is_ascii_char to is_ascii_alphabet_char
This commit is contained in:
parent
4a0160241f
commit
b1f5e9fe3a
7 changed files with 10 additions and 10 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue