You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fix for mixed tabs and spaces in gdscript
This commit is contained in:
@@ -1099,7 +1099,7 @@ void GDScriptTokenizer::check_indent() {
|
|||||||
_advance();
|
_advance();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mixed) {
|
if (mixed && !(line_continuation || multiline_mode)) {
|
||||||
Token error = make_error("Mixed use of tabs and spaces for indentation.");
|
Token error = make_error("Mixed use of tabs and spaces for indentation.");
|
||||||
error.start_line = line;
|
error.start_line = line;
|
||||||
error.start_column = 1;
|
error.start_column = 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user