mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* net/dbus.el (dbus-name-owner-changed-handler): Use
dbus-unregister-object instead of dbus-unregister-signal.
This commit is contained in:
parent
2c3a8b2787
commit
7d1112ae98
2 changed files with 7 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
;;; -*- no-byte-compile: t; -*-
|
||||
;;; dbus.el --- Elisp bindings for D-Bus.
|
||||
|
||||
;; Copyright (C) 2007 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2007, 2008 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Michael Albinus <michael.albinus@gmx.de>
|
||||
;; Keywords: comm, hardware
|
||||
|
|
@ -92,7 +92,7 @@ usage: (dbus-name-owner-changed-handler service old-owner new-owner)"
|
|||
;; elt has the structure (UNAME SERVICE PATH HANDLER).
|
||||
(when (string-equal old-owner (car elt))
|
||||
;; Remove old key, and add new entry with changed name.
|
||||
(dbus-unregister-signal (list key (cdr elt)))
|
||||
(dbus-unregister-object (list key (cdr elt)))
|
||||
;; Maybe we could arrange the lists a little bit better
|
||||
;; that we don't need to extract every single element?
|
||||
(dbus-register-signal
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue