mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
Fix a dbus.el byte compilation warning
* lisp/net/dbus.el (dbus-register-monitor): Silence a byte-compilation warning on systems without dbus.
This commit is contained in:
parent
216c65b135
commit
ee3a4e3d1b
1 changed files with 3 additions and 2 deletions
|
|
@ -2029,8 +2029,9 @@ either a method name, a signal name, or an error name."
|
|||
",")
|
||||
rule (or rule ""))
|
||||
|
||||
(unless (ignore-errors (dbus-get-unique-name bus-private))
|
||||
(dbus-init-bus bus 'private))
|
||||
(when (fboundp 'dbus-get-unique-name)
|
||||
(unless (ignore-errors (dbus-get-unique-name bus-private))
|
||||
(dbus-init-bus bus 'private)))
|
||||
(dbus-call-method
|
||||
bus-private dbus-service-dbus dbus-path-dbus dbus-interface-monitoring
|
||||
"BecomeMonitor" `(:array :string ,rule) :uint32 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue