diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2016-05-13 11:34:39 +0800 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2016-05-13 11:34:39 +0800 |
commit | 97c05cc892af85abd9438d2f685d08c557a0d9fb (patch) | |
tree | f16e2e15f938a9697f9e1d40868991133ecc2df1 | |
parent | 6435f41f6d444243c87b7b52e5e7c0b5a40195ad (diff) | |
download | emacs-97c05cc892af85abd9438d2f685d08c557a0d9fb.tar.gz |
Correct server/client address
* src/process.c (Fmake_network_process): :local is for servers and :remote
is for clients.
-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 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); |