From 7fcc0070f0fed6e8f58487757ac273fe2fdc90fc Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sat, 4 Aug 2012 10:08:11 +0200 Subject: [PATCH] * simple.el (list-processes--refresh): For a server use :host or :local as the address. --- lisp/ChangeLog | 5 +++++ lisp/simple.el | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 91a280211d3..c1e0c82b6be 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-08-04 Andreas Schwab + + * simple.el (list-processes--refresh): For a server use :host or + :local as the address. + 2012-08-04 Michal Nazarewicz (tiny change) * lisp/mpc.el: Support password in host argument. diff --git a/lisp/simple.el b/lisp/simple.el index e1d6760e72b..d17bd8dc326 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2881,7 +2881,9 @@ Also, delete any process that is exited or signaled." "network") (if (plist-get contact :server) (format "server on %s" - (plist-get contact :server)) + (or + (plist-get contact :host) + (plist-get contact :local))) (format "connection to %s" (plist-get contact :host)))) (format "(serial port %s%s)" -- 2.11.4.GIT