aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-12-21 16:17:13 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-12-21 16:17:13 +0000
commite22ad9fd9b37aa7a3dd578aac30e5f66632e5c51 (patch)
tree922a3bd61a4e406f9961cc570d5f53bb8c8dab13
parent[w3m-dev 03593] Re: segmentation fault when <title> exist after <img> (diff)
downloadw3m-e22ad9fd9b37aa7a3dd578aac30e5f66632e5c51.tar.gz
w3m-e22ad9fd9b37aa7a3dd578aac30e5f66632e5c51.zip
fix indent
-rw-r--r--file.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/file.c b/file.c
index 3f319ce..b2cfeab 100644
--- a/file.c
+++ b/file.c
@@ -1,4 +1,4 @@
-/* $Id: file.c,v 1.166 2002/12/21 16:16:43 ukai Exp $ */
+/* $Id: file.c,v 1.167 2002/12/21 16:17:13 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -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;
}
}