From ea7ad4f94a99fbe480e2324e69b1095a11a256f7 Mon Sep 17 00:00:00 2001 From: Carlos Maniero Date: Tue, 18 Apr 2023 13:58:47 -0300 Subject: style: Fix identation on lexer.c Co-authored-by: Johnny Richard Signed-off-by: Carlos Maniero Link: https://lists.sr.ht/~johnnyrichard/pipalang-devel/%3C20230418165847.3798-1-carlosmaniero%40gmail.com%3E --- src/lexer.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/lexer.c b/src/lexer.c index 6c38f6e..77ae68e 100644 --- a/src/lexer.c +++ b/src/lexer.c @@ -39,11 +39,11 @@ lexer_init(lexer_t *lexer, char *filepath) static void lexer_define_literal_token_props(lexer_t *lexer, token_t *token, token_kind_t kind) { - token->kind = kind; - token->value = string_view_new(lexer->src + lexer->cur, 1); - token->filepath = lexer->filepath; - token->row = lexer->row; - token->col = lexer->cur - lexer->bol; + token->kind = kind; + token->value = string_view_new(lexer->src + lexer->cur, 1); + token->filepath = lexer->filepath; + token->row = lexer->row; + token->col = lexer->cur - lexer->bol; } static void -- cgit v1.2.3