aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkwhite2015-02-04 11:23:10 -0500
committerkwhite2015-02-04 11:23:10 -0500
commitc6487170e39e5b58872e935c95e8d033554501f7 (patch)
tree8247ddd24e1e4acb86c85404e4f0bc8c6a88930b
parentd825f66db83501588f1c84aa4d78e644e0d5f896 (diff)
downloademacs-c6487170e39e5b58872e935c95e8d033554501f7.tar.gz
emacs-c6487170e39e5b58872e935c95e8d033554501f7.zip
Update ERC docs and update MAINTANERS to include myself
-rw-r--r--admin/ChangeLog4
-rw-r--r--admin/MAINTAINERS5
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/erc.texi31
4 files changed, 38 insertions, 7 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 88d996532e0..0f70469fc0c 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,7 @@
12015-02-04 Kelvin White <kwhite@gnu.org>
2
3 * MAINTAINERS: Add myself to section 2
4
12015-02-02 Glenn Morris <rgm@gnu.org> 52015-02-02 Glenn Morris <rgm@gnu.org>
2 6
3 * admin.el (manual-meta-string): Use bug-gnu-emacs@gnu email address 7 * admin.el (manual-meta-string): Use bug-gnu-emacs@gnu email address
diff --git a/admin/MAINTAINERS b/admin/MAINTAINERS
index 1a5c64191ff..04942a8c3c9 100644
--- a/admin/MAINTAINERS
+++ b/admin/MAINTAINERS
@@ -78,6 +78,11 @@ Bastien Guerry
782. 782.
79============================================================================== 79==============================================================================
80 80
81Kelvin White
82 ERC
83 lisp/erc/*
84 doc/misc/erc.texi
85
81Eli Zaretskii 86Eli Zaretskii
82 doc/* 87 doc/*
83 lispref/* 88 lispref/*
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 71469b51808..616b3574037 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
12015-02-04 Kelvin White <kwhite@gnu.org>
2
3 * erc.texi (Advanced Usage, Options): Add descriptions and examples
4 for erc-format-nick-function and erc-rename-buffers options.
5
12014-12-29 Michael Albinus <michael.albinus@gmx.de> 62014-12-29 Michael Albinus <michael.albinus@gmx.de>
2 7
3 Sync with Tramp 2.2.11. 8 Sync with Tramp 2.2.11.
diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi
index ffb8cd6455c..866d8486969 100644
--- a/doc/misc/erc.texi
+++ b/doc/misc/erc.texi
@@ -588,6 +588,16 @@ In the latter case, if the first nick in the list is already in use,
588other nicks are tried in the list order. 588other nicks are tried in the list order.
589@end defopt 589@end defopt
590 590
591@defopt erc-format-nick-function
592A function to format a nickname for message display
593
594You can set this to @code{erc-format-@OA@nick} to display user mode prefix
595@end defopt
596
597@example
598(setq erc-format-nick-function 'erc-format-@@nick)
599@end example
600
591@defopt erc-nick-uniquifier 601@defopt erc-nick-uniquifier
592The string to append to the nick if it is already in use. 602The string to append to the nick if it is already in use.
593@end defopt 603@end defopt
@@ -657,13 +667,6 @@ your Emacs configuration file. Everything after the @code{(require
657@lisp 667@lisp
658;;; Sample ERC configuration 668;;; Sample ERC configuration
659 669
660;; Add the ERC directory to load path -- you don't need this if you are
661;; using the version of ERC that comes with Emacs
662(add-to-list 'load-path "~/elisp/erc")
663
664;; Load ERC
665(require 'erc)
666
667;; Load authentication info from an external source. Put sensitive 670;; Load authentication info from an external source. Put sensitive
668;; passwords and the like in here. 671;; passwords and the like in here.
669(load "~/.emacs.d/.erc-auth") 672(load "~/.emacs.d/.erc-auth")
@@ -712,6 +715,12 @@ stuff, to the current ERC buffer."
712;; Join the #emacs and #erc channels whenever connecting to Freenode. 715;; Join the #emacs and #erc channels whenever connecting to Freenode.
713(setq erc-autojoin-channels-alist '(("freenode.net" "#emacs" "#erc"))) 716(setq erc-autojoin-channels-alist '(("freenode.net" "#emacs" "#erc")))
714 717
718;; Rename server buffers to reflect the current network name instead
719;; of SERVER:PORT. (e.g. "freenode" instead of "irc.freenode.net:6667"). This
720;; is useful when using a bouncer like ZNC where you have multiple
721;; connections to the same server.
722(setq erc-rename-buffers t)
723
715;; Interpret mIRC-style color commands in IRC chats 724;; Interpret mIRC-style color commands in IRC chats
716(setq erc-interpret-mirc-color t) 725(setq erc-interpret-mirc-color t)
717 726
@@ -750,6 +759,14 @@ lurkers. The function @code{erc-lurker-p} determines whether a given
750nickname is considered a lurker. 759nickname is considered a lurker.
751@end defopt 760@end defopt
752 761
762@defopt erc-rename-buffers
763If non, @code{nil}, this will rename server buffers to reflect the
764current network name instead of IP:PORT
765
766@example
767(setq erc-rename-buffers t)
768@end example
769@end defopt
753 770
754@node Getting Help and Reporting Bugs 771@node Getting Help and Reporting Bugs
755@chapter Getting Help and Reporting Bugs 772@chapter Getting Help and Reporting Bugs