Variable: dbus-event-error-functions

dbus-event-error-functions is a variable defined in dbus.el.gz.

Value

(tramp-gvfs-dbus-event-error
 dbus-notice-synchronous-call-errors
 dbus-warn-interactive-authorization-required)

Documentation

Functions to be called when a D-Bus error happens in the event handler.

Every function must accept two arguments, the event and the error variable caught in condition-case by dbus-error.

Probably introduced at or before Emacs version 24.3.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defvar dbus-event-error-functions
  '(dbus-notice-synchronous-call-errors
    dbus-warn-interactive-authorization-required)
  "Functions to be called when a D-Bus error happens in the event handler.
Every function must accept two arguments, the event and the error variable
caught in `condition-case' by `dbus-error'.")