aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorMiles Bader2007-07-24 01:25:28 +0000
committerMiles Bader2007-07-24 01:25:28 +0000
commit492d9f3e3ccd2b640958e840caa451e9e04e86db (patch)
treec87779daf272535b621216ef05179fa48102e57e /src/process.c
parent7eb1e4534e88a32fe5e549e630fdabf3e062be2b (diff)
parent1e8995158740b15936887264a3d7183beb5c51d9 (diff)
downloademacs-492d9f3e3ccd2b640958e840caa451e9e04e86db.tar.gz
emacs-492d9f3e3ccd2b640958e840caa451e9e04e86db.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 814-823) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 59-69) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 237-238) - Update from CVS Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-26
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 b63edbe0b6d..f6e936105f3 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1776,7 +1776,7 @@ usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1776 XPROCESS (proc)->encoding_buf = make_uninit_string (0); 1776 XPROCESS (proc)->encoding_buf = make_uninit_string (0);
1777 1777
1778 XPROCESS (proc)->inherit_coding_system_flag 1778 XPROCESS (proc)->inherit_coding_system_flag
1779 = (NILP (buffer) || !inherit_process_coding_system); 1779 = !(NILP (buffer) || !inherit_process_coding_system);
1780 1780
1781 create_process (proc, (char **) new_argv, current_dir); 1781 create_process (proc, (char **) new_argv, current_dir);
1782 1782
@@ -3553,7 +3553,7 @@ usage: (make-network-process &rest ARGS) */)
3553 p->encoding_buf = make_uninit_string (0); 3553 p->encoding_buf = make_uninit_string (0);
3554 3554
3555 p->inherit_coding_system_flag 3555 p->inherit_coding_system_flag
3556 = (!NILP (tem) || NILP (buffer) || !inherit_process_coding_system); 3556 = !(!NILP (tem) || NILP (buffer) || !inherit_process_coding_system);
3557 3557
3558 UNGCPRO; 3558 UNGCPRO;
3559 return proc; 3559 return proc;
@@ -5186,7 +5186,7 @@ read_process_output (proc, channel)
5186 carryover); 5186 carryover);
5187 p->decoding_carryover = carryover; 5187 p->decoding_carryover = carryover;
5188 /* Adjust the multibyteness of TEXT to that of the filter. */ 5188 /* Adjust the multibyteness of TEXT to that of the filter. */
5189 if (p->filter_multibyte != STRING_MULTIBYTE (text)) 5189 if (!p->filter_multibyte != !STRING_MULTIBYTE (text))
5190 text = (STRING_MULTIBYTE (text) 5190 text = (STRING_MULTIBYTE (text)
5191 ? Fstring_as_unibyte (text) 5191 ? Fstring_as_unibyte (text)
5192 : Fstring_to_multibyte (text)); 5192 : Fstring_to_multibyte (text));