aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c
index 5551c0610d0..30cc13cfb2c 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1775,7 +1775,7 @@ usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1775 XPROCESS (proc)->encoding_buf = make_uninit_string (0); 1775 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
1776 1776
1777 XPROCESS (proc)->inherit_coding_system_flag 1777 XPROCESS (proc)->inherit_coding_system_flag
1778 = (NILP (buffer) || !inherit_process_coding_system); 1778 = !(NILP (buffer) || !inherit_process_coding_system);
1779 1779
1780 create_process (proc, (char **) new_argv, current_dir); 1780 create_process (proc, (char **) new_argv, current_dir);
1781 1781
@@ -3547,7 +3547,7 @@ usage: (make-network-process &rest ARGS) */)
3547 p->encoding_buf = make_uninit_string (0); 3547 p->encoding_buf = make_uninit_string (0);
3548 3548
3549 p->inherit_coding_system_flag 3549 p->inherit_coding_system_flag
3550 = (!NILP (tem) || NILP (buffer) || !inherit_process_coding_system); 3550 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
3551 3551
3552 UNGCPRO; 3552 UNGCPRO;
3553 return proc; 3553 return proc;
@@ -5176,7 +5176,7 @@ read_process_output (proc, channel)
5176 p->decoding_carryover = coding->carryover_bytes; 5176 p->decoding_carryover = coding->carryover_bytes;
5177 } 5177 }
5178 /* Adjust the multibyteness of TEXT to that of the filter. */ 5178 /* Adjust the multibyteness of TEXT to that of the filter. */
5179 if (p->filter_multibyte != STRING_MULTIBYTE (text)) 5179 if (!p->filter_multibyte != !STRING_MULTIBYTE (text))
5180 text = (STRING_MULTIBYTE (text) 5180 text = (STRING_MULTIBYTE (text)
5181 ? Fstring_as_unibyte (text) 5181 ? Fstring_as_unibyte (text)
5182 : Fstring_to_multibyte (text)); 5182 : Fstring_to_multibyte (text));