diff options
author | Kenichi Handa <handa@m17n.org> | 1997-06-09 12:59:38 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-06-09 12:59:38 +0000 |
commit | 2e0a2a9cfd7982e32adc3e0315bd06ab5bd0bc80 (patch) | |
tree | 395ea935a60b4908700f36cea5868db3e43d9b0f /src/xdisp.c | |
parent | 83502605bef92e975139e695792bcb333d80736e (diff) | |
download | emacs-2e0a2a9cfd7982e32adc3e0315bd06ab5bd0bc80.tar.gz |
(decode_mode_spec): Access the value of
buffer-file-coding-system by b->buffer_file_coding_system.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r-- | src/xdisp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 1a7e5027d46..be7400f70a6 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -4384,9 +4384,8 @@ decode_mode_spec (w, c, spec_width, maxwidth) 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); |