diff options
| author | Michael Albinus | 2012-04-03 09:20:32 +0200 |
|---|---|---|
| committer | Michael Albinus | 2012-04-03 09:20:32 +0200 |
| commit | 66b907dcb20e425ea4a9fd1662a3c869aabbcb50 (patch) | |
| tree | 5bfc12af1a7e58bce7f2fb09a246b261912c2587 | |
| parent | 53b0595aed5a04fa72faa79dfce2cfb4f23da4c4 (diff) | |
| download | emacs-66b907dcb20e425ea4a9fd1662a3c869aabbcb50.tar.gz emacs-66b907dcb20e425ea4a9fd1662a3c869aabbcb50.zip | |
* notifications.el (notifications-notify): Fix docstring.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/notifications.el | 5 |
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 @@ | |||
| 1 | 2012-04-03 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * notifications.el (notifications-notify): Fix docstring. | ||
| 4 | |||
| 1 | 2012-04-02 Glenn Morris <rgm@gnu.org> | 5 | 2012-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 | ||
| 189 | This function returns a notification id, an integer, which can be | 191 | This function returns a notification id, an integer, which can be |
| 190 | used to manipulate the notification item with | 192 | used to manipulate the notification item with |
| 191 | `notifications-close-notification'." | 193 | `notifications-close-notification' or the `:replaces-id' argument |
| 194 | of 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)) |