Variable: ispell-save-corrections-as-abbrevs
ispell-save-corrections-as-abbrevs is a customizable variable defined
in ispell.el.gz.
Value
nil
Documentation
Whether to save spelling corrections as abbrevs by default.
Determines the default behavior of Ispell after correcting a misspelled
word. Non-nil means to save a global abbrev that expands the misspelled
word to its correction. This behavior may be toggled on a per-word
basis by typing \C-u immediately before selecting a replacement in
the Ispell command loop.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defcustom ispell-save-corrections-as-abbrevs nil
"Whether to save spelling corrections as abbrevs by default.
Determines the default behavior of Ispell after correcting a misspelled
word. Non-nil means to save a global abbrev that expands the misspelled
word to its correction. This behavior may be toggled on a per-word
basis by typing \\`C-u' immediately before selecting a replacement in
the Ispell command loop."
:type 'boolean
:version "31.1")