From f00b5652087955183e1d4b77997dba60134ed7c8 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Sat, 7 Jan 2023 00:31:11 +0900 Subject: [PATCH] Indentation fix for HTMLtagproc1 --- file.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/file.c b/file.c index f5fb744..b52f892 100644 --- a/file.c +++ b/file.c @@ -5232,17 +5232,17 @@ HTMLtagproc1(struct parsed_tag *tag, struct html_feed_environ *h_env) case HTML_INPUT: close_anchor(h_env, obuf); tmp = process_input(tag); - if (tmp) - HTMLlineproc1(tmp->ptr, h_env); - return 1; + if (tmp) + HTMLlineproc1(tmp->ptr, h_env); + return 1; case HTML_BUTTON: - HTML5_CLOSE_A; - tmp = process_button(tag); - if (tmp) - HTMLlineproc1(tmp->ptr, h_env); - return 1; + HTML5_CLOSE_A; + tmp = process_button(tag); + if (tmp) + HTMLlineproc1(tmp->ptr, h_env); + return 1; case HTML_N_BUTTON: - tmp = process_n_button(); + tmp = process_n_button(); if (tmp) HTMLlineproc1(tmp->ptr, h_env); return 1; @@ -5531,7 +5531,7 @@ HTMLtagproc1(struct parsed_tag *tag, struct html_feed_environ *h_env) obuf->flag &= ~RB_HEAD; if (obuf->flag & RB_TITLE) HTMLlineproc1("", h_env); - return 1; + return 1; case HTML_HEAD: obuf->flag |= RB_HEAD; return 1;