aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorMiles Bader2007-07-18 22:15:15 +0000
committerMiles Bader2007-07-18 22:15:15 +0000
commit4dacf5c59890f619e2285e6afae1061c763d87fa (patch)
treeeee51e638782332d75082c4f420708c35ffdd451 /src/process.c
parent4bb99e3a15f1e7e13103df4908814294dc974463 (diff)
parent6e3aa3f58ef253559ce6416d6aa02885cd944ff1 (diff)
downloademacs-4dacf5c59890f619e2285e6afae1061c763d87fa.tar.gz
emacs-4dacf5c59890f619e2285e6afae1061c763d87fa.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 814-815) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-232
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));