Function: dbus-event-path-name

dbus-event-path-name is a byte-compiled function defined in dbus.el.gz.

Signature

(dbus-event-path-name EVENT)

Documentation

Return the object path of the D-Bus object the event is coming from.

The result is a string. EVENT is a D-Bus event, see dbus-check-event. This function signals a dbus-error if the event is not well formed.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-event-path-name (event)
  "Return the object path of the D-Bus object the event is coming from.
The result is a string.  EVENT is a D-Bus event, see `dbus-check-event'.
This function signals a `dbus-error' if the event is not well
formed."
  (dbus-check-event event)
  (nth 6 event))