From: Richard M. Stallman Date: Sat, 12 Jul 1997 19:11:07 +0000 (+0000) Subject: (decode_mode_spec): Initialize and use `p' (for the termcap case). X-Git-Tag: emacs-20.1~1185 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=539b4d41598e8892866f4ef9e92bb2ac1d0930a7;p=emacs.git (decode_mode_spec): Initialize and use `p' (for the termcap case). --- diff --git a/src/xdisp.c b/src/xdisp.c index a1fad6a504d..d7c0bfe34bc 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -4441,7 +4441,7 @@ decode_mode_spec (w, c, spec_width, maxwidth) /* coding-system (including end-of-line type) */ { int eol_flag = (c == 'Z'); - char *p; + char *p = decode_mode_spec_buf; if (FRAME_TERMCAP_P (f)) { @@ -4451,7 +4451,7 @@ decode_mode_spec (w, c, spec_width, maxwidth) 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); + p, eol_flag); #if 0 /* This proves to be annoying; I think we can do without. -- rms. */ #ifdef subprocesses