aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorChris Feng2016-05-13 11:34:39 +0800
committerChris Feng2016-05-13 11:34:39 +0800
commit97c05cc892af85abd9438d2f685d08c557a0d9fb (patch)
treef16e2e15f938a9697f9e1d40868991133ecc2df1 /src/process.c
parent6435f41f6d444243c87b7b52e5e7c0b5a40195ad (diff)
downloademacs-97c05cc892af85abd9438d2f685d08c557a0d9fb.tar.gz
emacs-97c05cc892af85abd9438d2f685d08c557a0d9fb.zip
Correct server/client address
* src/process.c (Fmake_network_process): :local is for servers and :remote is for clients.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c2
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) */)
3652 3652
3653 /* :local ADDRESS or :remote ADDRESS */ 3653 /* :local ADDRESS or :remote ADDRESS */
3654 tem = Fplist_get (contact, QCserver); 3654 tem = Fplist_get (contact, QCserver);
3655 if (!NILP (tem)) 3655 if (NILP (tem))
3656 address = Fplist_get (contact, QCremote); 3656 address = Fplist_get (contact, QCremote);
3657 else 3657 else
3658 address = Fplist_get (contact, QClocal); 3658 address = Fplist_get (contact, QClocal);