From 172f945448fc46c7a3a97333ffd097a62dd70266 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 10 Feb 2003 07:43:03 +0000 Subject: [PATCH] (Fset_buffer_multibyte): If the current buffer has a process, update coding systems for the process. --- src/buffer.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/buffer.c b/src/buffer.c index 06663c9abd7..77aa61d45ba 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -2288,6 +2288,15 @@ but the contents viewed as characters do change. */) if (!modified_p && !NILP (Fbuffer_modified_p (Qnil))) Fset_buffer_modified_p (Qnil); + /* Update coding systems of this buffer's process (if any). */ + { + Lisp_Object process; + + process = Fget_buffer_process (Fcurrent_buffer ()); + if (PROCESSP (process)) + setup_process_coding_systems (process); + } + return flag; } -- 2.39.5