mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-21 10:24:55 +00:00
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
This commit is contained in:
parent
6b3d64854f
commit
4639bc99d6
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user