aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1997-06-09 12:59:38 +0000
committerKenichi Handa1997-06-09 12:59:38 +0000
commit2e0a2a9cfd7982e32adc3e0315bd06ab5bd0bc80 (patch)
tree395ea935a60b4908700f36cea5868db3e43d9b0f /src
parent83502605bef92e975139e695792bcb333d80736e (diff)
downloademacs-2e0a2a9cfd7982e32adc3e0315bd06ab5bd0bc80.tar.gz
emacs-2e0a2a9cfd7982e32adc3e0315bd06ab5bd0bc80.zip
(decode_mode_spec): Access the value of
buffer-file-coding-system by b->buffer_file_coding_system.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c5
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)
4384 int eol_flag = (c == 'Z'); 4384 int eol_flag = (c == 'Z');
4385 char *p; 4385 char *p;
4386 4386
4387 p = decode_mode_spec_coding 4387 p = decode_mode_spec_coding (b->buffer_file_coding_system,
4388 (find_symbol_value (Qbuffer_file_coding_system), 4388 decode_mode_spec_buf, eol_flag);
4389 decode_mode_spec_buf, eol_flag);
4390 if (FRAME_TERMCAP_P (f)) 4389 if (FRAME_TERMCAP_P (f))
4391 { 4390 {
4392 p = decode_mode_spec_coding (keyboard_coding.symbol, p, eol_flag); 4391 p = decode_mode_spec_coding (keyboard_coding.symbol, p, eol_flag);