Mercurial > emacs
diff src/coding.c @ 111575:c1042b16fa46
coding.c (Fset_terminal_coding_system_internal): Fix previous change (set charset-ID list instead of charset-symbol list).
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 17 Nov 2010 14:51:09 +0900 |
parents | 435e622dd41e |
children | 141d3f14d8c3 |
line wrap: on
line diff
--- a/src/coding.c Wed Nov 17 13:09:08 2010 +0900 +++ b/src/coding.c Wed Nov 17 14:51:09 2010 +0900 @@ -9310,7 +9310,7 @@ if (terminal_coding->common_flags & CODING_REQUIRE_ENCODING_MASK) term->charset_list = coding_charset_list (terminal_coding); else - term->charset_list = Fcons (Qascii, Qnil); + term->charset_list = Fcons (make_number (charset_ascii), Qnil); return Qnil; }