From: Chris Feng Date: Fri, 13 May 2016 03:34:39 +0000 (+0800) Subject: Correct server/client address X-Git-Tag: emacs-26.0.90~1951 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=97c05cc892af85abd9438d2f685d08c557a0d9fb;p=emacs.git Correct server/client address * src/process.c (Fmake_network_process): :local is for servers and :remote is for clients. --- diff --git a/src/process.c b/src/process.c index 3e66949b690..eed875db70b 100644 --- a/src/process.c +++ b/src/process.c @@ -3652,7 +3652,7 @@ usage: (make-network-process &rest ARGS) */) /* :local ADDRESS or :remote ADDRESS */ tem = Fplist_get (contact, QCserver); - if (!NILP (tem)) + if (NILP (tem)) address = Fplist_get (contact, QCremote); else address = Fplist_get (contact, QClocal);