aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-11-12 19:40:44 -0800
committerGlenn Morris2012-11-12 19:40:44 -0800
commit6e5e9b70f501a975baa4bce0b8f0854052435ff0 (patch)
tree19a4afa24240877198d2fef0b31e57fc0fbae14a
parent314654db9bdf937d4fc9b770e688a42acb9a0514 (diff)
downloademacs-6e5e9b70f501a975baa4bce0b8f0854052435ff0.tar.gz
emacs-6e5e9b70f501a975baa4bce0b8f0854052435ff0.zip
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.
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/erc.texi10
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/erc/ChangeLog4
-rw-r--r--lisp/erc/erc.el4
5 files changed, 20 insertions, 8 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index b3b4ad07147..82e0cd0f856 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
12012-11-13 Glenn Morris <rgm@gnu.org>
2
3 * erc.texi (Modules): Undocument obsolete "hecomplete".
4 Add "notifications".
5
12012-11-12 Glenn Morris <rgm@gnu.org> 62012-11-12 Glenn Morris <rgm@gnu.org>
2 7
3 * flymake.texi (Customizable variables) 8 * flymake.texi (Customizable variables)
diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi
index 378180bef31..b5c0dd3c718 100644
--- a/doc/misc/erc.texi
+++ b/doc/misc/erc.texi
@@ -390,11 +390,6 @@ Complete nicknames and commands (programmable)
390@item fill 390@item fill
391Wrap long lines 391Wrap long lines
392 392
393@cindex modules, hecomplete
394@item hecomplete
395Complete nicknames and commands (old). This is the old module---you
396might prefer the ``completion'' module instead.
397
398@cindex modules, identd 393@cindex modules, identd
399@item identd 394@item identd
400Launch an identd server on port 8113 395Launch an identd server on port 8113
@@ -427,6 +422,11 @@ Don't display non-IRC commands after evaluation
427@item notify 422@item notify
428Notify when the online status of certain users changes 423Notify when the online status of certain users changes
429 424
425@cindex modules, notifications
426@item notifications
427Send you a notification when you get a private message,
428or your nickname is mentioned
429
430@cindex modules, page 430@cindex modules, page
431@item page 431@item page
432Process CTCP PAGE requests from IRC 432Process CTCP PAGE requests from IRC
diff --git a/etc/NEWS b/etc/NEWS
index 23210e5212f..80c1e5ff4ad 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -434,8 +434,9 @@ The global binding for `M-=', `count-words-region' is in effect.
434 434
435** ERC 435** ERC
436 436
437*** New package `erc-desktop-notifications.el', which can send a notification 437+++
438when you receive a private message or your nickname is mentioned. 438*** New module "notifications", which can send a notification when you
439receive a private message or your nickname is mentioned.
439 440
440*** ERC will look up server/channel names via auth-source and use any 441*** ERC will look up server/channel names via auth-source and use any
441channel keys found. 442channel keys found.
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog
index 13dbba769a4..390b34cba40 100644
--- a/lisp/erc/ChangeLog
+++ b/lisp/erc/ChangeLog
@@ -1,3 +1,7 @@
12012-11-13 Glenn Morris <rgm@gnu.org>
2
3 * erc.el (erc-modules): Add "notifications". Tweak "hecomplete" doc.
4
12012-10-28 Stefan Monnier <monnier@iro.umontreal.ca> 52012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * erc-backend.el: Only require `erc' during compilation (bug#12740). 7 * erc-backend.el: Only require `erc' during compilation (bug#12740).
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 2e97131b603..7cb6fbb595b 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -1843,7 +1843,7 @@ removed from the list will be disabled."
1843 capab-identify) 1843 capab-identify)
1844 (const :tag "completion: Complete nicknames and commands (programmable)" 1844 (const :tag "completion: Complete nicknames and commands (programmable)"
1845 completion) 1845 completion)
1846 (const :tag "hecomplete: Complete nicknames and commands (old)" hecomplete) 1846 (const :tag "hecomplete: Complete nicknames and commands (obsolete, use \"completion\")" hecomplete)
1847 (const :tag "dcc: Provide Direct Client-to-Client support" dcc) 1847 (const :tag "dcc: Provide Direct Client-to-Client support" dcc)
1848 (const :tag "fill: Wrap long lines" fill) 1848 (const :tag "fill: Wrap long lines" fill)
1849 (const :tag "identd: Launch an identd server on port 8113" identd) 1849 (const :tag "identd: Launch an identd server on port 8113" identd)
@@ -1863,6 +1863,8 @@ removed from the list will be disabled."
1863 (const :tag 1863 (const :tag
1864 "notify: Notify when the online status of certain users changes" 1864 "notify: Notify when the online status of certain users changes"
1865 notify) 1865 notify)
1866 (const :tag "notifications: Send notifications on PRIVMSG or nickname mentions"
1867 notifications)
1866 (const :tag "page: Process CTCP PAGE requests from IRC" page) 1868 (const :tag "page: Process CTCP PAGE requests from IRC" page)
1867 (const :tag "readonly: Make displayed lines read-only" readonly) 1869 (const :tag "readonly: Make displayed lines read-only" readonly)
1868 (const :tag "replace: Replace text in messages" replace) 1870 (const :tag "replace: Replace text in messages" replace)