]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_buffer_multibyte): Pay attention to the buffer
authorKenichi Handa <handa@m17n.org>
Tue, 25 Feb 2003 02:24:53 +0000 (02:24 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 25 Feb 2003 02:24:53 +0000 (02:24 +0000)
process only when "subprocesses" is defined.

src/buffer.c

index 77aa61d45ba76ee11fe49753aa778c2f4cb08a1c..bfb234773eab8bec6ff8ffaacd125771160a49a9 100644 (file)
@@ -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;
 }