diff options
| author | Glenn Morris | 2012-11-13 00:05:42 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-11-13 00:05:42 -0800 |
| commit | f925b109e76f36081d9495252fcee204deb4c1fb (patch) | |
| tree | 5ab1471e2065c6bcc919a50182fa0ce71defcbab | |
| parent | f99c65e5743526a7fcc6352599b6f0efd3970202 (diff) | |
| download | emacs-f925b109e76f36081d9495252fcee204deb4c1fb.tar.gz emacs-f925b109e76f36081d9495252fcee204deb4c1fb.zip | |
* doc/misc/erc.texi (Connecting): Add brief section on passwords.
* etc/NEWS: Related edit.
| -rw-r--r-- | doc/misc/ChangeLog | 1 | ||||
| -rw-r--r-- | doc/misc/erc.texi | 24 | ||||
| -rw-r--r-- | etc/NEWS | 3 |
3 files changed, 28 insertions, 0 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 82e0cd0f856..0a837320b43 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | * erc.texi (Modules): Undocument obsolete "hecomplete". | 3 | * erc.texi (Modules): Undocument obsolete "hecomplete". |
| 4 | Add "notifications". | 4 | Add "notifications". |
| 5 | (Connecting): Add brief section on passwords. | ||
| 5 | 6 | ||
| 6 | 2012-11-12 Glenn Morris <rgm@gnu.org> | 7 | 2012-11-12 Glenn Morris <rgm@gnu.org> |
| 7 | 8 | ||
diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi index b5c0dd3c718..ea315cd86fa 100644 --- a/doc/misc/erc.texi +++ b/doc/misc/erc.texi | |||
| @@ -604,6 +604,30 @@ ERC should automatically attempt to connect with another nickname. | |||
| 604 | You can manually set another nickname with the /NICK command. | 604 | You can manually set another nickname with the /NICK command. |
| 605 | @end defopt | 605 | @end defopt |
| 606 | 606 | ||
| 607 | @subheading Password | ||
| 608 | @cindex password | ||
| 609 | |||
| 610 | @defopt erc-prompt-for-password | ||
| 611 | If non-@code{nil} (the default), @kbd{M-x erc} prompts for a password. | ||
| 612 | @end defopt | ||
| 613 | |||
| 614 | If you prefer, you can set this option to @code{nil} and use the | ||
| 615 | @code{auth-source} mechanism to store your password. For instance, if | ||
| 616 | you use @file{~/.authinfo} as your auth-source backend, then put | ||
| 617 | something like the following in that file: | ||
| 618 | |||
| 619 | @example | ||
| 620 | machine irc.example.net login "#fsf" password sEcReT | ||
| 621 | @end example | ||
| 622 | |||
| 623 | @noindent | ||
| 624 | ERC also consults @code{auth-source} to find any channel keys required | ||
| 625 | for the channels that you wish to autojoin, as specified by the | ||
| 626 | variable @code{erc-autojoin-channels-alist}. | ||
| 627 | |||
| 628 | For more details, @pxref{Top,,auth-source, auth, Emacs auth-source Library}. | ||
| 629 | |||
| 630 | |||
| 607 | @subheading Full name | 631 | @subheading Full name |
| 608 | 632 | ||
| 609 | @defun erc-compute-full-name &optional full-name | 633 | @defun erc-compute-full-name &optional full-name |
| @@ -438,9 +438,12 @@ The global binding for `M-=', `count-words-region' is in effect. | |||
| 438 | *** New module "notifications", which can send a notification when you | 438 | *** New module "notifications", which can send a notification when you |
| 439 | receive a private message or your nickname is mentioned. | 439 | receive a private message or your nickname is mentioned. |
| 440 | 440 | ||
| 441 | +++ | ||
| 441 | *** ERC will look up server/channel names via auth-source and use any | 442 | *** ERC will look up server/channel names via auth-source and use any |
| 442 | channel keys found. | 443 | channel keys found. |
| 443 | 444 | ||
| 445 | *** FIXME erc-lurker-hide-list | ||
| 446 | |||
| 444 | +++ | 447 | +++ |
| 445 | ** Flymake uses fringe bitmaps to indicate errors and warnings. | 448 | ** Flymake uses fringe bitmaps to indicate errors and warnings. |
| 446 | See `flymake-fringe-indicator-position', `flymake-error-bitmap' and | 449 | See `flymake-fringe-indicator-position', `flymake-error-bitmap' and |