aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c
index e9f7c59936c..56d3a67e8d1 100644
--- a/src/process.c
+++ b/src/process.c
@@ -3276,15 +3276,17 @@ send_process (proc, buf, len, object)
3276 && !NILP (XBUFFER (object)->enable_multibyte_characters)) 3276 && !NILP (XBUFFER (object)->enable_multibyte_characters))
3277 || EQ (object, Qt)) 3277 || EQ (object, Qt))
3278 { 3278 {
3279 coding->src_multibyte = 1;
3280 if (!EQ (coding->symbol, XPROCESS (proc)->encode_coding_system)) 3279 if (!EQ (coding->symbol, XPROCESS (proc)->encode_coding_system))
3281 /* The coding system for encoding was changed to raw-text 3280 /* The coding system for encoding was changed to raw-text
3282 because we sent a unibyte text previously. Now we are 3281 because we sent a unibyte text previously. Now we are
3283 sending a multibyte text, thus we must encode it by the 3282 sending a multibyte text, thus we must encode it by the
3284 original coding system specified for the current 3283 original coding system specified for the current
3285 process. */ 3284 process. */
3286 setup_coding_system (XPROCESS (proc)->encode_coding_system, 3285 setup_coding_system (XPROCESS (proc)->encode_coding_system, coding);
3287 coding); 3286 /* src_multibyte should be set to 1 _after_ a call to
3287 setup_coding_system, since it resets src_multibyte to
3288 zero. */
3289 coding->src_multibyte = 1;
3288 } 3290 }
3289 else 3291 else
3290 { 3292 {