diff options
| author | Kenichi Handa | 2009-02-09 00:45:17 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2009-02-09 00:45:17 +0000 |
| commit | cb84a2bed1678a9af4d1fe6ed5827553500ed05e (patch) | |
| tree | 34a30e5f74f95b4d8bae97332ecf59b8c1fb03f8 /src/coding.c | |
| parent | 5e5adbc9752f89436d861d7c14a80b1c9d570bfb (diff) | |
| download | emacs-cb84a2bed1678a9af4d1fe6ed5827553500ed05e.tar.gz emacs-cb84a2bed1678a9af4d1fe6ed5827553500ed05e.zip | |
(detect_coding_charset): Fix previous change.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 5101 | valids = AREF (attrs, coding_attr_charset_valids); | 5101 | valids = AREF (attrs, coding_attr_charset_valids); |
| 5102 | name = CODING_ID_NAME (coding->id); | 5102 | name = CODING_ID_NAME (coding->id); |
| 5103 | if (VECTORP (Vlatin_extra_code_table) | 5103 | if (VECTORP (Vlatin_extra_code_table) |
| 5104 | && strcmp ((char *) SDATA (SYMBOL_NAME (name)), "iso-8859-")) | 5104 | && strcmp ((char *) SDATA (SYMBOL_NAME (name)), "iso-8859-") == 0) |
| 5105 | check_latin_extra = 1; | 5105 | check_latin_extra = 1; |
| 5106 | if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) | 5106 | if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))) |
| 5107 | src += head_ascii; | 5107 | src += head_ascii; |