diff options
| author | kwhite | 2015-05-21 14:30:18 -0500 |
|---|---|---|
| committer | kwhite | 2015-05-21 14:30:18 -0500 |
| commit | fdad335016c5e830f90bb8da3ed4f1365273a524 (patch) | |
| tree | e58e8cfd62cd689952339e981ae71d1b63c4545b /doc/misc | |
| parent | 96794d2f97cd064e4c2bf4f71459b42558cc8c79 (diff) | |
| download | emacs-fdad335016c5e830f90bb8da3ed4f1365273a524.tar.gz emacs-fdad335016c5e830f90bb8da3ed4f1365273a524.zip | |
* lisp/erc/erc.el: Hide network/channel messages
(erc-network-hide-list, etc-channel-hide-list): New lists to define
message types per network/channel.
(erc-add-targets): New function to parse list of targets
(erc-hide-current-message-p): Modified to check for new targets
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/erc.texi | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi index 9e570da3d1d..56aea0c3184 100644 --- a/doc/misc/erc.texi +++ b/doc/misc/erc.texi | |||
| @@ -753,6 +753,26 @@ If non, @code{nil}, this is a list of IRC message types to hide, e.g.: | |||
| 753 | @end example | 753 | @end example |
| 754 | @end defopt | 754 | @end defopt |
| 755 | 755 | ||
| 756 | @defopt erc-network-hide-list | ||
| 757 | If non, @code{nil}, this is a list of IRC networks and message types | ||
| 758 | to hide, e.g.: | ||
| 759 | |||
| 760 | @example | ||
| 761 | (setq erc-network-hide-list (("freenode" "JOIN" "PART" "QUIT") | ||
| 762 | ("OFTC" "JOIN" "PART"")) | ||
| 763 | @end example | ||
| 764 | @end defopt | ||
| 765 | |||
| 766 | @defopt erc-channel-hide-list | ||
| 767 | If non, @code{nil}, this is a list of IRC channels and message types | ||
| 768 | to hide, e.g.: | ||
| 769 | |||
| 770 | @example | ||
| 771 | (setq erc-channel-hide-list (("#erc" "JOIN" "PART" "QUIT") | ||
| 772 | ("#emacs" "NICK")) | ||
| 773 | @end example | ||
| 774 | @end defopt | ||
| 775 | |||
| 756 | @defopt erc-lurker-hide-list | 776 | @defopt erc-lurker-hide-list |
| 757 | Like @code{erc-hide-list}, but only applies to messages sent by | 777 | Like @code{erc-hide-list}, but only applies to messages sent by |
| 758 | lurkers. The function @code{erc-lurker-p} determines whether a given | 778 | lurkers. The function @code{erc-lurker-p} determines whether a given |