emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109425: * simple.el (list-processes-


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109425: * simple.el (list-processes--refresh): For a server use :host or
Date: Sat, 04 Aug 2012 10:08:11 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109425
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Sat 2012-08-04 10:08:11 +0200
message:
  * simple.el (list-processes--refresh): For a server use :host or
  :local as the address.
modified:
  lisp/ChangeLog
  lisp/simple.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-08-04 07:37:27 +0000
+++ b/lisp/ChangeLog    2012-08-04 08:08:11 +0000
@@ -1,3 +1,8 @@
+2012-08-04  Andreas Schwab  <address@hidden>
+
+       * simple.el (list-processes--refresh): For a server use :host or
+       :local as the address.
+
 2012-08-04  Michal Nazarewicz  <address@hidden>  (tiny change)
 
        * lisp/mpc.el: Support password in host argument.

=== modified file 'lisp/simple.el'
--- a/lisp/simple.el    2012-07-29 18:11:42 +0000
+++ b/lisp/simple.el    2012-08-04 08:08:11 +0000
@@ -2881,7 +2881,9 @@
                                       "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)"


reply via email to

[Prev in Thread] Current Thread [Next in Thread]