# HG changeset patch # User Kenichi Handa # Date 1046139893 0 # Node ID 3420da3e4b0f99bfe3d8556def28903a91dcfb89 # Parent bd6fa6f622f21f95e32bb43f4f4d39bac45b6f7a (Fset_buffer_multibyte): Pay attention to the buffer process only when "subprocesses" is defined. diff -r bd6fa6f622f2 -r 3420da3e4b0f src/buffer.c --- 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; }