diff options
author | Tom Regner <tom@goochesa.de> | 2013-12-03 09:24:39 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2013-12-03 09:24:39 +0100 |
commit | d6f2380eeed330976812f3d53849640ea77cd064 (patch) | |
tree | 65ae4558efdc030a0f3191b368e299d10d944200 /lisp/notifications.el | |
parent | 7303a0aefc1fbabfea1b6b7711a6da2289aecdb2 (diff) | |
download | emacs-d6f2380eeed330976812f3d53849640ea77cd064.tar.gz |
* notifications.el (notifications-close-notification): Call the
D-Bus method with `id' being an `:uint32'. (Bug#16030)
Diffstat (limited to 'lisp/notifications.el')
-rw-r--r-- | lisp/notifications.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/notifications.el b/lisp/notifications.el index 5c8c8f1dc68..33ae1dee5c1 100644 --- a/lisp/notifications.el +++ b/lisp/notifications.el @@ -349,7 +349,7 @@ BUS can be a string denoting a D-Bus connection, the default is `:session'." notifications-path notifications-interface notifications-close-notification-method - :int32 id)) + :uint32 id)) (defvar dbus-debug) ; used in the macroexpansion of dbus-ignore-errors |