aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorKenichi Handa2003-02-25 02:24:53 +0000
committerKenichi Handa2003-02-25 02:24:53 +0000
commit2a2b50a9d8697cd8ffa846009e59b01c24619660 (patch)
treedec2442fc29dc7073cb46b8de24e85045a172b50 /src/buffer.c
parent6165587cb63eab400cda27ca4f20ac54efa03474 (diff)
downloademacs-2a2b50a9d8697cd8ffa846009e59b01c24619660.tar.gz
emacs-2a2b50a9d8697cd8ffa846009e59b01c24619660.zip
(Fset_buffer_multibyte): Pay attention to the buffer
process only when "subprocesses" is defined.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 2 insertions, 0 deletions
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. */)
2288 if (!modified_p && !NILP (Fbuffer_modified_p (Qnil))) 2288 if (!modified_p && !NILP (Fbuffer_modified_p (Qnil)))
2289 Fset_buffer_modified_p (Qnil); 2289 Fset_buffer_modified_p (Qnil);
2290 2290
2291#ifdef subprocesses
2291 /* Update coding systems of this buffer's process (if any). */ 2292 /* Update coding systems of this buffer's process (if any). */
2292 { 2293 {
2293 Lisp_Object process; 2294 Lisp_Object process;
@@ -2296,6 +2297,7 @@ but the contents viewed as characters do change. */)
2296 if (PROCESSP (process)) 2297 if (PROCESSP (process))
2297 setup_process_coding_systems (process); 2298 setup_process_coding_systems (process);
2298 } 2299 }
2300#endif /* subprocesses */
2299 2301
2300 return flag; 2302 return flag;
2301} 2303}