Variable: ispell-local-dictionary-alist
ispell-local-dictionary-alist is a customizable variable defined in
ispell.el.gz.
Value
nil
Documentation
List of local or customized dictionary definitions.
These can override the values in ispell-dictionary-alist.
To make permanent changes to your dictionary definitions, you will need to make your changes in this variable, save, and then re-start Emacs.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defcustom ispell-local-dictionary-alist nil
"List of local or customized dictionary definitions.
These can override the values in `ispell-dictionary-alist'.
To make permanent changes to your dictionary definitions, you
will need to make your changes in this variable, save, and then
re-start Emacs."
:type '(repeat (list (choice :tag "Dictionary"
(string :tag "Dictionary name")
(const :tag "default" nil))
(regexp :tag "Case characters")
(regexp :tag "Non case characters")
(regexp :tag "Other characters")
(boolean :tag "Many other characters")
(repeat :tag "Ispell command line args"
(string :tag "Arg"))
(choice :tag "Extended character mode"
(const "~tex") (const "~plaintex")
(const "~nroff") (const "~list")
(const "~latin1") (const "~latin3")
(const :tag "default" nil))
(coding-system :tag "Coding System"))))