From: Kenichi Handa Date: Mon, 9 Feb 2009 00:45:17 +0000 (+0000) Subject: (detect_coding_charset): Fix previous change. X-Git-Tag: emacs-pretest-23.0.91~329 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cb84a2bed1678a9af4d1fe6ed5827553500ed05e;p=emacs.git (detect_coding_charset): Fix previous change. --- diff --git a/src/ChangeLog b/src/ChangeLog index 7c4cbf9f312..3db96f64fca 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-02-08 ARISAWA Akihiro + + * coding.c (detect_coding_charset): Fix previous change. + 2009-02-08 Jason Rumney * w32fns.c (w32_hide_hourglass): Handle case where frame diff --git a/src/coding.c b/src/coding.c index 313fac1526d..f05cf841f5a 100644 --- a/src/coding.c +++ b/src/coding.c @@ -5101,7 +5101,7 @@ detect_coding_charset (coding, detect_info) valids = AREF (attrs, coding_attr_charset_valids); name = CODING_ID_NAME (coding->id); if (VECTORP (Vlatin_extra_code_table) - && strcmp ((char *) SDATA (SYMBOL_NAME (name)), "iso-8859-")) + && strcmp ((char *) SDATA (SYMBOL_NAME (name)), "iso-8859-") == 0) check_latin_extra = 1; if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) src += head_ascii;