Variable: erc-spelling-dictionaries
erc-spelling-dictionaries is a customizable variable defined in
erc-spelling.el.gz.
Value
nil
Documentation
An alist mapping buffer names to dictionaries.
The car of every cell is a buffer name, the cadr is the
string name of an associated dictionary.
The dictionary is inherited from server buffers, so if you want a
default dictionary for some server, you can use a server buffer
name here.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-spelling.el.gz
(defcustom erc-spelling-dictionaries nil
"An alist mapping buffer names to dictionaries.
The `car' of every cell is a buffer name, the `cadr' is the
string name of an associated dictionary.
The dictionary is inherited from server buffers, so if you want a
default dictionary for some server, you can use a server buffer
name here."
:type '(choice (const nil)
(repeat (cons (string :tag "Buffer name")
(string :tag "Dictionary"))))
:group 'erc-spelling)