diff options
| author | Noam Postavsky | 2018-07-12 19:41:03 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2018-07-12 19:43:00 -0400 |
| commit | 5cc7c4b48a2d6eca5d14d12b1cd258bf9cabde74 (patch) | |
| tree | 2f0c171f70723cbab1ffb7b2696b5fe01814804f /src/process.c | |
| parent | d6a1b69cf39533763bdfe81b33a54cb6afa0e7f2 (diff) | |
| download | emacs-5cc7c4b48a2d6eca5d14d12b1cd258bf9cabde74.tar.gz emacs-5cc7c4b48a2d6eca5d14d12b1cd258bf9cabde74.zip | |
Fix previous make-network-process change
* src/process.c (Fmake_network_process): On 2018-07-09 "Explicitly
reject :server and :nowait (Bug#31903)", the sense of the SERVER check
was accidentally reversed so that we ended up looking for the wrong
ADDRESS. Reported by T.V Raman in
<https://lists.gnu.org/archive/html/emacs-devel/2018-07/msg00437.html>.
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 4d7a735652c..f7b96d28543 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -3898,7 +3898,7 @@ usage: (make-network-process &rest ARGS) */) | |||
| 3898 | CHECK_STRING (name); | 3898 | CHECK_STRING (name); |
| 3899 | 3899 | ||
| 3900 | /* :local ADDRESS or :remote ADDRESS */ | 3900 | /* :local ADDRESS or :remote ADDRESS */ |
| 3901 | if (!NILP (server)) | 3901 | if (NILP (server)) |
| 3902 | address = Fplist_get (contact, QCremote); | 3902 | address = Fplist_get (contact, QCremote); |
| 3903 | else | 3903 | else |
| 3904 | address = Fplist_get (contact, QClocal); | 3904 | address = Fplist_get (contact, QClocal); |