* net/dbus.el (top): Don't check for (getenv

"DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
This commit is contained in:
Michael Albinus 2009-08-20 15:24:58 +00:00
parent 3f56d3c665
commit 6fd2d19a36
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2009-08-20 Michael Albinus <michael.albinus@gmx.de>
* net/dbus.el (top): Don't check for (getenv
"DBUS_SESSION_BUS_ADDRESS"). It's done in dbusbind.c now.
2009-08-19 Magnus Henoch <magnus.henoch@gmail.com>
* log-edit.el (log-edit-strip-single-file-name): New var.

View file

@ -836,9 +836,8 @@ name of the property, and its value. If there are no properties,
;; 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)))
(dbus-init-bus :system)
(dbus-init-bus :session))
(provide 'dbus)