Function: dbus-event-arguments

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

Signature

(dbus-event-arguments EVENT)

Documentation

Return the arguments the event is carrying on.

The result is a list of arguments. 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-arguments (event)
  "Return the arguments the event is carrying on.
The result is a list of arguments.  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)
  (nthcdr 10 event))