From: Petr Vaněk Date: Sat, 27 May 2023 11:41:50 +0000 (+0200) Subject: Fix indentation in Parser/tokenizer.c (#105012) X-Git-Tag: v3.13.0a1~1999 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e62eb2e70a9f2a8099735989a58e8c8cfb4a2f2;p=thirdparty%2FPython%2Fcpython.git Fix indentation in Parser/tokenizer.c (#105012) --- diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 1e8f785a331a..a7651b1bd864 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -1760,7 +1760,7 @@ tok_get_normal_mode(struct tok_state *tok, tokenizer_mode* current_tok, struct t tok->starting_col_offset = tok->col_offset; /* Return pending indents/dedents */ - if (tok->pendin != 0) { + if (tok->pendin != 0) { if (tok->pendin < 0) { if (tok->tok_extra_tokens) { p_start = tok->cur;