From: Andreas Schwab Date: Sat, 4 Aug 2012 08:08:11 +0000 (+0200) Subject: * simple.el (list-processes--refresh): For a server use :host or X-Git-Tag: emacs-24.2.90~864 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7fcc0070f0fed6e8f58487757ac273fe2fdc90fc;p=emacs.git * simple.el (list-processes--refresh): For a server use :host or :local as the address. --- 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)"