Variable: flyspell-default-dictionary

flyspell-default-dictionary is a customizable variable defined in flyspell.el.gz.

Value

nil

Documentation

A string that is the name of the default dictionary.

This is passed to the ispell-change-dictionary when flyspell is started. If the variable ispell-local-dictionary or ispell-dictionary is non-nil when flyspell is started, the value of that variable is used instead of flyspell-default-dictionary to select the default dictionary. Otherwise, if flyspell-default-dictionary is nil, it means to use Ispell's ultimate default dictionary.

This variable was added, or its default value changed, in Emacs 21.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/flyspell.el.gz
(defcustom flyspell-default-dictionary nil
  "A string that is the name of the default dictionary.
This is passed to the `ispell-change-dictionary' when flyspell is started.
If the variable `ispell-local-dictionary' or `ispell-dictionary' is non-nil
when flyspell is started, the value of that variable is used instead
of `flyspell-default-dictionary' to select the default dictionary.
Otherwise, if `flyspell-default-dictionary' is nil, it means to use
Ispell's ultimate default dictionary."
  :version "21.1"
  :type '(choice string (const :tag "Default" nil)))