changeset 49974:3420da3e4b0f

(Fset_buffer_multibyte): Pay attention to the buffer process only when "subprocesses" is defined.
author Kenichi Handa <handa@m17n.org>
date Tue, 25 Feb 2003 02:24:53 +0000
parents bd6fa6f622f2
children d4f2089db3f0
files src/buffer.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/buffer.c	Tue Feb 25 02:17:27 2003 +0000
+++ b/src/buffer.c	Tue Feb 25 02:24:53 2003 +0000
@@ -2288,6 +2288,7 @@
   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 @@
     if (PROCESSP (process))
       setup_process_coding_systems (process);
   }
+#endif	/* subprocesses */
 
   return flag;
 }