aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-09 00:28:25 +0000
committerRichard M. Stallman1997-07-09 00:28:25 +0000
commitf13c925f62243345ada683e12d237e668245b0cd (patch)
tree9fe79bbb8d9a3acead9a6e2f15737c3bd2fcfc9f /src
parentd0381a7fa3f50d1042a2372eb23b6f03299aaaa5 (diff)
downloademacs-f13c925f62243345ada683e12d237e668245b0cd.tar.gz
emacs-f13c925f62243345ada683e12d237e668245b0cd.zip
(decode_mode_spec) <z,Z>: Display buffer coding system
last of the three.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 8260c83a5c4..773d7987798 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -4431,8 +4431,6 @@ decode_mode_spec (w, c, spec_width, maxwidth)
4431 int eol_flag = (c == 'Z'); 4431 int eol_flag = (c == 'Z');
4432 char *p; 4432 char *p;
4433 4433
4434 p = decode_mode_spec_coding (b->buffer_file_coding_system,
4435 decode_mode_spec_buf, eol_flag);
4436 if (FRAME_TERMCAP_P (f)) 4434 if (FRAME_TERMCAP_P (f))
4437 { 4435 {
4438 /* No need to mention EOL here--the terminal never needs 4436 /* No need to mention EOL here--the terminal never needs
@@ -4440,6 +4438,9 @@ decode_mode_spec (w, c, spec_width, maxwidth)
4440 p = decode_mode_spec_coding (keyboard_coding.symbol, p, 0); 4438 p = decode_mode_spec_coding (keyboard_coding.symbol, p, 0);
4441 p = decode_mode_spec_coding (terminal_coding.symbol, p, 0); 4439 p = decode_mode_spec_coding (terminal_coding.symbol, p, 0);
4442 } 4440 }
4441 p = decode_mode_spec_coding (b->buffer_file_coding_system,
4442 decode_mode_spec_buf, eol_flag);
4443
4443#if 0 /* This proves to be annoying; I think we can do without. -- rms. */ 4444#if 0 /* This proves to be annoying; I think we can do without. -- rms. */
4444#ifdef subprocesses 4445#ifdef subprocesses
4445 obj = Fget_buffer_process (Fcurrent_buffer ()); 4446 obj = Fget_buffer_process (Fcurrent_buffer ());