diff options
| author | Aaron Conole | 2016-05-02 23:40:14 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-05-02 23:40:14 +0200 |
| commit | 4639bc99d677aef2583200c4aa8e4cf53a29ecb9 (patch) | |
| tree | 48ebd4f078b0f64cc73aeb29cad8deafa9565d63 /src/process.c | |
| parent | 6b3d64854f6a7b0c8365b600704f0087b15b5720 (diff) | |
| download | emacs-4639bc99d677aef2583200c4aa8e4cf53a29ecb9.tar.gz emacs-4639bc99d677aef2583200c4aa8e4cf53a29ecb9.zip | |
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
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) */) | |||
| 3910 | p->gnutls_boot_parameters = tem; | 3910 | p->gnutls_boot_parameters = tem; |
| 3911 | #endif | 3911 | #endif |
| 3912 | 3912 | ||
| 3913 | set_network_socket_coding_system (proc, service, host, name); | 3913 | set_network_socket_coding_system (proc, host, service, name); |
| 3914 | 3914 | ||
| 3915 | unbind_to (count, Qnil); | 3915 | unbind_to (count, Qnil); |
| 3916 | 3916 | ||