Mercurial > emacs
changeset 18184:ef6ecf102af3
(decode_mode_spec): Access the value of
buffer-file-coding-system by b->buffer_file_coding_system.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 09 Jun 1997 12:59:38 +0000 |
parents | dc9d056f204f |
children | d84dde1fad16 |
files | src/xdisp.c |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Mon Jun 09 12:59:28 1997 +0000 +++ b/src/xdisp.c Mon Jun 09 12:59:38 1997 +0000 @@ -4384,9 +4384,8 @@ int eol_flag = (c == 'Z'); char *p; - p = decode_mode_spec_coding - (find_symbol_value (Qbuffer_file_coding_system), - decode_mode_spec_buf, eol_flag); + p = decode_mode_spec_coding (b->buffer_file_coding_system, + decode_mode_spec_buf, eol_flag); if (FRAME_TERMCAP_P (f)) { p = decode_mode_spec_coding (keyboard_coding.symbol, p, eol_flag);