aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Regner2013-12-03 09:24:39 +0100
committerMichael Albinus2013-12-03 09:24:39 +0100
commitd6f2380eeed330976812f3d53849640ea77cd064 (patch)
tree65ae4558efdc030a0f3191b368e299d10d944200
parent7303a0aefc1fbabfea1b6b7711a6da2289aecdb2 (diff)
downloademacs-d6f2380eeed330976812f3d53849640ea77cd064.tar.gz
emacs-d6f2380eeed330976812f3d53849640ea77cd064.zip
* notifications.el (notifications-close-notification): Call the
D-Bus method with `id' being an `:uint32'. (Bug#16030)
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/notifications.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 610ac93b035..0c5db95587d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-12-03 Tom Regner <tom@goochesa.de> (tiny change)
2
3 * notifications.el (notifications-close-notification): Call the
4 D-Bus method with `id' being an `:uint32'. (Bug#16030)
5
12013-12-03 Katsumi Yamaoka <yamaoka@jpl.org> 62013-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
2 7
3 * net/eww.el (eww-render): Don't pass arg to eww-display-image. 8 * net/eww.el (eww-render): Don't pass arg to eww-display-image.
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'."
349 notifications-path 349 notifications-path
350 notifications-interface 350 notifications-interface
351 notifications-close-notification-method 351 notifications-close-notification-method
352 :int32 id)) 352 :uint32 id))
353 353
354(defvar dbus-debug) ; used in the macroexpansion of dbus-ignore-errors 354(defvar dbus-debug) ; used in the macroexpansion of dbus-ignore-errors
355 355