diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2012-04-03 09:20:32 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2012-04-03 09:20:32 +0200 |
commit | 66b907dcb20e425ea4a9fd1662a3c869aabbcb50 (patch) | |
tree | 5bfc12af1a7e58bce7f2fb09a246b261912c2587 /lisp/notifications.el | |
parent | 53b0595aed5a04fa72faa79dfce2cfb4f23da4c4 (diff) | |
download | emacs-66b907dcb20e425ea4a9fd1662a3c869aabbcb50.tar.gz emacs-66b907dcb20e425ea4a9fd1662a3c869aabbcb50.tar.bz2 emacs-66b907dcb20e425ea4a9fd1662a3c869aabbcb50.zip |
* notifications.el (notifications-notify): Fix docstring.
Diffstat (limited to 'lisp/notifications.el')
-rw-r--r-- | lisp/notifications.el | 5 |
1 files changed, 4 insertions, 1 deletions
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: - `dismissed' if the notification was dismissed by the user - `close-notification' if the notification was closed by a call to CloseNotification + - `undefined' if the notification server hasn't provided + a reason This function returns a notification id, an integer, which can be used to manipulate the notification item with -`notifications-close-notification'." +`notifications-close-notification' or the `:replaces-id' argument +of another `notifications-notify' call." (let ((title (plist-get params :title)) (body (plist-get params :body)) (app-name (plist-get params :app-name)) |