From: Kenichi Handa Date: Tue, 25 Feb 2003 02:24:53 +0000 (+0000) Subject: (Fset_buffer_multibyte): Pay attention to the buffer X-Git-Tag: ttn-vms-21-2-B4~11036 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a2b50a9d8697cd8ffa846009e59b01c24619660;p=emacs.git (Fset_buffer_multibyte): Pay attention to the buffer process only when "subprocesses" is defined. --- diff --git a/src/buffer.c b/src/buffer.c index 77aa61d45ba..bfb234773ea 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -2288,6 +2288,7 @@ but the contents viewed as characters do change. */) if (!modified_p && !NILP (Fbuffer_modified_p (Qnil))) Fset_buffer_modified_p (Qnil); +#ifdef subprocesses /* Update coding systems of this buffer's process (if any). */ { Lisp_Object process; @@ -2296,6 +2297,7 @@ but the contents viewed as characters do change. */) if (PROCESSP (process)) setup_process_coding_systems (process); } +#endif /* subprocesses */ return flag; }