aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2012-04-03 09:20:32 +0200
committerMichael Albinus2012-04-03 09:20:32 +0200
commit66b907dcb20e425ea4a9fd1662a3c869aabbcb50 (patch)
tree5bfc12af1a7e58bce7f2fb09a246b261912c2587
parent53b0595aed5a04fa72faa79dfce2cfb4f23da4c4 (diff)
downloademacs-66b907dcb20e425ea4a9fd1662a3c869aabbcb50.tar.gz
emacs-66b907dcb20e425ea4a9fd1662a3c869aabbcb50.zip
* notifications.el (notifications-notify): Fix docstring.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/notifications.el5
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f5f33cf4706..937ae7575d0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12012-04-03 Michael Albinus <michael.albinus@gmx.de>
2
3 * notifications.el (notifications-notify): Fix docstring.
4
12012-04-02 Glenn Morris <rgm@gnu.org> 52012-04-02 Glenn Morris <rgm@gnu.org>
2 6
3 * emacs-lisp/authors.el (authors-aliases): Another addition. 7 * emacs-lisp/authors.el (authors-aliases): Another addition.
diff --git a/lisp/notifications.el b/lisp/notifications.el
index 908cbcaabab..b825eb65abf 100644
--- a/lisp/notifications.el
+++ b/lisp/notifications.el
@@ -185,10 +185,13 @@ Various PARAMS can be set:
185 - `dismissed' if the notification was dismissed by the user 185 - `dismissed' if the notification was dismissed by the user
186 - `close-notification' if the notification was closed 186 - `close-notification' if the notification was closed
187 by a call to CloseNotification 187 by a call to CloseNotification
188 - `undefined' if the notification server hasn't provided
189 a reason
188 190
189This function returns a notification id, an integer, which can be 191This function returns a notification id, an integer, which can be
190used to manipulate the notification item with 192used to manipulate the notification item with
191`notifications-close-notification'." 193`notifications-close-notification' or the `:replaces-id' argument
194of another `notifications-notify' call."
192 (let ((title (plist-get params :title)) 195 (let ((title (plist-get params :title))
193 (body (plist-get params :body)) 196 (body (plist-get params :body))
194 (app-name (plist-get params :app-name)) 197 (app-name (plist-get params :app-name))