1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

Document new erc module "notifications"

* doc/misc/erc.texi (Modules): Undocument obsolete "hecomplete".
Add "notifications".

* lisp/erc/erc.el (erc-modules): Add "notifications".  Tweak "hecomplete" doc.

* etc/NEWS: Related edit.
This commit is contained in:
Glenn Morris 2012-11-12 19:40:44 -08:00
parent 314654db9b
commit 6e5e9b70f5
5 changed files with 20 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2012-11-13 Glenn Morris <rgm@gnu.org>
* erc.texi (Modules): Undocument obsolete "hecomplete".
Add "notifications".
2012-11-12 Glenn Morris <rgm@gnu.org>
* flymake.texi (Customizable variables)

View File

@ -390,11 +390,6 @@ Complete nicknames and commands (programmable)
@item fill
Wrap long lines
@cindex modules, hecomplete
@item hecomplete
Complete nicknames and commands (old). This is the old module---you
might prefer the ``completion'' module instead.
@cindex modules, identd
@item identd
Launch an identd server on port 8113
@ -427,6 +422,11 @@ Don't display non-IRC commands after evaluation
@item notify
Notify when the online status of certain users changes
@cindex modules, notifications
@item notifications
Send you a notification when you get a private message,
or your nickname is mentioned
@cindex modules, page
@item page
Process CTCP PAGE requests from IRC

View File

@ -434,8 +434,9 @@ The global binding for `M-=', `count-words-region' is in effect.
** ERC
*** New package `erc-desktop-notifications.el', which can send a notification
when you receive a private message or your nickname is mentioned.
+++
*** New module "notifications", which can send a notification when you
receive a private message or your nickname is mentioned.
*** ERC will look up server/channel names via auth-source and use any
channel keys found.

View File

@ -1,3 +1,7 @@
2012-11-13 Glenn Morris <rgm@gnu.org>
* erc.el (erc-modules): Add "notifications". Tweak "hecomplete" doc.
2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
* erc-backend.el: Only require `erc' during compilation (bug#12740).

View File

@ -1843,7 +1843,7 @@ removed from the list will be disabled."
capab-identify)
(const :tag "completion: Complete nicknames and commands (programmable)"
completion)
(const :tag "hecomplete: Complete nicknames and commands (old)" hecomplete)
(const :tag "hecomplete: Complete nicknames and commands (obsolete, use \"completion\")" hecomplete)
(const :tag "dcc: Provide Direct Client-to-Client support" dcc)
(const :tag "fill: Wrap long lines" fill)
(const :tag "identd: Launch an identd server on port 8113" identd)
@ -1863,6 +1863,8 @@ removed from the list will be disabled."
(const :tag
"notify: Notify when the online status of certain users changes"
notify)
(const :tag "notifications: Send notifications on PRIVMSG or nickname mentions"
notifications)
(const :tag "page: Process CTCP PAGE requests from IRC" page)
(const :tag "readonly: Make displayed lines read-only" readonly)
(const :tag "replace: Replace text in messages" replace)