]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/dbus.el (top): Apply `dbus-init-bus' for the :session bus
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 19 Aug 2009 07:15:28 +0000 (07:15 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 19 Aug 2009 07:15:28 +0000 (07:15 +0000)
only if it is running already.

lisp/ChangeLog
lisp/net/dbus.el

index 08c56531d968d856bd3082677bda8a3631ee9245..f511078e522f33f22ac044371bb629a6fc30bc11 100644 (file)
@@ -1,3 +1,8 @@
+2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
+       is running already.
+
 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * subr.el (listify-key-sequence-1): Use normal syntax since those
index c1222a66f665be544452437dcc0f07c7f59b8acc..273d531ed3525256245e30993ce613a3d158a93f 100644 (file)
 (defvar dbus-debug)
 (defvar dbus-registered-functions-table)
 
-;; Initialize :system and :session buses.  This adds their file
-;; descriptors to input_wait_mask, in order to detect incoming
-;; messages immediately.
-;; We must avoid to call the function twice for a bus, because the
-;; DBusWatch will be removed then.
-(when (and (featurep 'dbusbind) (not (featurep 'dbus)))
-  (dbus-init-bus :system)
-  (dbus-init-bus :session))
-
 ;; Pacify byte compiler.
 (eval-when-compile
   (require 'cl))
@@ -841,6 +832,14 @@ name of the property, and its value.  If there are no properties,
         (cons property (dbus-get-property bus service path interface property))
         'append)))))
 
+;; Initialize :system and :session buses.  This adds their file
+;; descriptors to input_wait_mask, in order to detect incoming
+;; messages immediately.
+(dbus-ignore-errors
+  (when (getenv "DBUS_SESSION_BUS_ADDRESS")
+    (dbus-init-bus :system)
+    (dbus-init-bus :session)))
+
 (provide 'dbus)
 
 ;; arch-tag: a47caf84-9162-4811-90cc-5d388e37b9bd