From: Noam Postavsky Date: Thu, 12 Jul 2018 23:41:03 +0000 (-0400) Subject: Fix previous make-network-process change X-Git-Tag: emacs-26.1.90~270 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5cc7c4b;p=emacs.git 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 . --- 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) */) CHECK_STRING (name); /* :local ADDRESS or :remote ADDRESS */ - if (!NILP (server)) + if (NILP (server)) address = Fplist_get (contact, QCremote); else address = Fplist_get (contact, QClocal);