Function: dbus-event-message-type

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

Signature

(dbus-event-message-type EVENT)

Documentation

Return the message type of the corresponding D-Bus message.

The result is a number. 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-message-type (event)
  "Return the message type of the corresponding D-Bus message.
The result is a number.  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 2 event))