From f13c925f62243345ada683e12d237e668245b0cd Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 9 Jul 1997 00:28:25 +0000 Subject: [PATCH] (decode_mode_spec) : Display buffer coding system last of the three. --- src/xdisp.c | 5 +++-- 1 file 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) int eol_flag = (c == 'Z'); char *p; - p = decode_mode_spec_coding (b->buffer_file_coding_system, - decode_mode_spec_buf, eol_flag); if (FRAME_TERMCAP_P (f)) { /* No need to mention EOL here--the terminal never needs @@ -4440,6 +4438,9 @@ decode_mode_spec (w, c, spec_width, maxwidth) p = decode_mode_spec_coding (keyboard_coding.symbol, p, 0); p = decode_mode_spec_coding (terminal_coding.symbol, p, 0); } + p = decode_mode_spec_coding (b->buffer_file_coding_system, + decode_mode_spec_buf, eol_flag); + #if 0 /* This proves to be annoying; I think we can do without. -- rms. */ #ifdef subprocesses obj = Fget_buffer_process (Fcurrent_buffer ()); -- 2.39.5