Variable: erc-encoding-coding-alist
erc-encoding-coding-alist is a customizable variable defined in
erc-backend.el.gz.
Value
nil
Documentation
Alist of target regexp and coding-system pairs to use.
This overrides erc-server-coding-system depending on the
current target as returned by erc-default-target.
Example: If you know that the channel #linux-ru uses the coding-system
cyrillic-koi8, then add ("#linux-ru" . cyrillic-koi8) to the
alist.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-backend.el.gz
(defcustom erc-encoding-coding-alist nil
"Alist of target regexp and coding-system pairs to use.
This overrides `erc-server-coding-system' depending on the
current target as returned by `erc-default-target'.
Example: If you know that the channel #linux-ru uses the coding-system
`cyrillic-koi8', then add (\"#linux-ru\" . cyrillic-koi8) to the
alist."
:type '(repeat (cons (regexp :tag "Target")
coding-system)))