Fix for mixed tabs and spaces in gdscript
(cherry picked from commit fecbc12d17
)
This commit is contained in:
parent
c893968b33
commit
4d38529284
@ -1099,7 +1099,7 @@ void GDScriptTokenizer::check_indent() {
|
||||
_advance();
|
||||
}
|
||||
|
||||
if (mixed) {
|
||||
if (mixed && !(line_continuation || multiline_mode)) {
|
||||
Token error = make_error("Mixed use of tabs and spaces for indentation.");
|
||||
error.start_line = line;
|
||||
error.start_column = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user