Function: notifications-close-notification

notifications-close-notification is a byte-compiled function defined in notifications.el.gz.

Signature

(notifications-close-notification ID &optional BUS)

Documentation

Close a notification with identifier ID.

BUS can be a string denoting a D-Bus connection, the default is :session.

Source Code

;; Defined in /usr/src/emacs/lisp/notifications.el.gz
(defun notifications-close-notification (id &optional bus)
  "Close a notification with identifier ID.
BUS can be a string denoting a D-Bus connection, the default is `:session'."
  (dbus-call-method (or bus :session)
                    notifications-service
                    notifications-path
                    notifications-interface
                    notifications-close-notification-method
                    :uint32 id))