From 3b56230efa916f7c3a33a7433e781679e21bebc6 Mon Sep 17 00:00:00 2001 From: Ito Hiroyuki Date: Mon, 2 Aug 2010 10:33:35 +0000 Subject: Revert the change of using ATTR_TITLE if ATTR_ALT is empty. --- file.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'file.c') diff --git a/file.c b/file.c index 49664d6..dd460fa 100644 --- a/file.c +++ b/file.c @@ -1,4 +1,4 @@ -/* $Id: file.c,v 1.262 2010/07/30 08:57:49 htrb Exp $ */ +/* $Id: file.c,v 1.263 2010/08/02 10:33:35 htrb Exp $ */ #include "fm.h" #include #include "myctype.h" @@ -3228,15 +3228,10 @@ process_img(struct parsed_tag *tag, int width) p = remove_space(p); q = NULL; parsedtag_get_value(tag, ATTR_ALT, &q); + if (!pseudoInlines && (q == NULL || (*q == '\0' && ignore_null_img_alt))) + return tmp; t = q; parsedtag_get_value(tag, ATTR_TITLE, &t); - if (q == NULL || (*q == '\0' && ignore_null_img_alt)) { - if (!pseudoInlines && (t == NULL || - (*t == '\0' && ignore_null_img_alt))) - return tmp; - q = t; - } - w = -1; if (parsedtag_get_value(tag, ATTR_WIDTH, &w)) { if (w < 0) { -- cgit v1.2.3