aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorPhilip Kaludercic2021-09-30 16:25:48 +0200
committerPhilip Kaludercic2021-09-30 16:25:48 +0200
commita1789fd67b2dd67d891b6c7181aee885a9ab9447 (patch)
tree5097194243067778bb1bfc67434168621e4fd2d7 /doc/misc
parentb5e3cc3bc597d56dfe09ee500717344649ea0354 (diff)
downloademacs-a1789fd67b2dd67d891b6c7181aee885a9ab9447.tar.gz
emacs-a1789fd67b2dd67d891b6c7181aee885a9ab9447.zip
Add rcirc-omit-unless-requested option
* doc/misc/rcirc.texi (Notices): Update documentation * lisp/net/rcirc.el (rcirc-pending-requests): Add local variable (rcirc-omit-unless-requested): Add user option (rcirc-print): Respect rcirc-omit-unless-requested (rcirc-define-command): Update rcirc-pending-requests
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/rcirc.texi13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/misc/rcirc.texi b/doc/misc/rcirc.texi
index 20971293ed1..a4ca54a8b01 100644
--- a/doc/misc/rcirc.texi
+++ b/doc/misc/rcirc.texi
@@ -823,6 +823,19 @@ active and only omits a message if the nick has not been active. The
823window @code{rcirc} considers is controlled by the 823window @code{rcirc} considers is controlled by the
824@code{rcirc-omit-threshold} variable. 824@code{rcirc-omit-threshold} variable.
825 825
826@vindex rcirc-omit-unless-requested
827Certain messages can be omitted by default, unless the user manual
828requests them. For example, if you don't want to display @code{TOPIC}
829and @code{NAMES} messages, after reconnecting, you can configure
830@code{rcirc-omit-unless-requested} to hide:
831
832@example
833(setq rcirc-omit-unless-requested '("TOPIC" "NAMES"))
834@end example
835
836Now NAMES will only be displayed, after it has been requested via the
837@code{rcirc-cmd-name} command.
838
826@node Hacking and Tweaking 839@node Hacking and Tweaking
827@chapter Hacking and Tweaking 840@chapter Hacking and Tweaking
828@cindex hacking and tweaking 841@cindex hacking and tweaking