Document new erc module "notifications"
authorGlenn Morris <rgm@gnu.org>
Tue, 13 Nov 2012 03:40:44 +0000 (19:40 -0800)
committerGlenn Morris <rgm@gnu.org>
Tue, 13 Nov 2012 03:40:44 +0000 (19:40 -0800)
* 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.

doc/misc/ChangeLog
doc/misc/erc.texi
etc/NEWS
lisp/erc/ChangeLog
lisp/erc/erc.el

index b3b4ad0..82e0cd0 100644 (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)
index 378180b..b5c0dd3 100644 (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
index 23210e5..80c1e5f 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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.
index 13dbba7..390b34c 100644 (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).
index 2e97131..7cb6fbb 100644 (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)