From: Aaron Conole Date: Mon, 2 May 2016 21:40:14 +0000 (+0200) Subject: Fix the call to set_network_coding_system X-Git-Tag: emacs-26.0.90~2009 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4639bc99d677aef2583200c4aa8e4cf53a29ecb9;p=emacs.git Fix the call to set_network_coding_system * src/process.c (Fmake_network_process): A recent commit modified the set_network_socket_coding_system function to take arguments host, service, and name. However, those arguments appear to be swapped. Copyright-paperwork-exempt: yes --- diff --git a/src/process.c b/src/process.c index 9f2d379c330..2d0fb567943 100644 --- a/src/process.c +++ b/src/process.c @@ -3910,7 +3910,7 @@ usage: (make-network-process &rest ARGS) */) p->gnutls_boot_parameters = tem; #endif - set_network_socket_coding_system (proc, service, host, name); + set_network_socket_coding_system (proc, host, service, name); unbind_to (count, Qnil);