diff options
| author | Kenichi Handa | 2010-11-17 14:51:09 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-11-17 14:51:09 +0900 |
| commit | 6b4bb7039fa9078206e35cf071ad098a706a0988 (patch) | |
| tree | 8a5840c4293d36fef18346281136e52984704006 /src | |
| parent | 9173a8fbd77df7db68247a331df1c84f8ff074ec (diff) | |
| download | emacs-6b4bb7039fa9078206e35cf071ad098a706a0988.tar.gz emacs-6b4bb7039fa9078206e35cf071ad098a706a0988.zip | |
coding.c (Fset_terminal_coding_system_internal): Fix previous change (set charset-ID list instead of charset-symbol list).
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/coding.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 401a93bbfb3..0e76750901a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-11-17 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * coding.c (Fset_terminal_coding_system_internal): Fix previous | ||
| 4 | change (set charset-ID list instead of charset-symbol list). | ||
| 5 | |||
| 1 | 2010-11-16 Chong Yidong <cyd@stupidchicken.com> | 6 | 2010-11-16 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * keyboard.c (make_lispy_position): For text area clicks, record Y | 8 | * keyboard.c (make_lispy_position): For text area clicks, record Y |
diff --git a/src/coding.c b/src/coding.c index b88ac1b576a..c834f76a65e 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -9310,7 +9310,7 @@ DEFUN ("set-terminal-coding-system-internal", Fset_terminal_coding_system_intern | |||
| 9310 | if (terminal_coding->common_flags & CODING_REQUIRE_ENCODING_MASK) | 9310 | if (terminal_coding->common_flags & CODING_REQUIRE_ENCODING_MASK) |
| 9311 | term->charset_list = coding_charset_list (terminal_coding); | 9311 | term->charset_list = coding_charset_list (terminal_coding); |
| 9312 | else | 9312 | else |
| 9313 | term->charset_list = Fcons (Qascii, Qnil); | 9313 | term->charset_list = Fcons (make_number (charset_ascii), Qnil); |
| 9314 | return Qnil; | 9314 | return Qnil; |
| 9315 | } | 9315 | } |
| 9316 | 9316 | ||