]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix previous make-network-process change
authorNoam Postavsky <npostavs@gmail.com>
Thu, 12 Jul 2018 23:41:03 +0000 (19:41 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Thu, 12 Jul 2018 23:43:00 +0000 (19:43 -0400)
* 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>.

src/process.c

index 4d7a735652c35abddd282e4ab2aaca722f60ad8d..f7b96d28543e7ccf26cada0292e39d26fbc68d2e 100644 (file)
@@ -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);