w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

commit bc51b8b1fde2ebe210a092de4d6a6cf9ee9ea2d1
parent 568d5276e059fed085dc5ff179b9db820793f965
Author: ukai <ukai>
Date:   Sat, 21 Dec 2002 16:17:13 +0000

fix indent

Diffstat:
Mfile.c | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/file.c b/file.c @@ -4886,7 +4886,7 @@ HTMLtagproc1(struct parsed_tag *tag, struct html_feed_environ *h_env) } case HTML_N_HEAD: if (obuf->flag & RB_TITLE) - HTMLlineproc1("</title>", h_env); + HTMLlineproc1("</title>", h_env); case HTML_HEAD: case HTML_N_BODY: return 1; @@ -5710,9 +5710,10 @@ HTMLlineproc0(char *line, struct html_feed_environ *h_env, int internal) p = str; if ((tag = parse_tag(&p, internal))) { if (tag->tagid == end_tag || - (pre_mode & RB_INSELECT && tag->tagid == HTML_N_FORM) || - (pre_mode & RB_TITLE && (tag->tagid == HTML_N_HEAD || - tag->tagid == HTML_BODY))) + (pre_mode & RB_INSELECT && tag->tagid == HTML_N_FORM) + || (pre_mode & RB_TITLE + && (tag->tagid == HTML_N_HEAD + || tag->tagid == HTML_BODY))) goto proc_normal; } }