mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(flyspell-duplicate-distance): Improve custom type.
This commit is contained in:
parent
93ab4de3e9
commit
e039c77344
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2008-04-06 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* textmodes/flyspell.el (flyspell-duplicate-distance): Improve
|
||||
custom type.
|
||||
|
||||
2008-04-06 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* calendar/diary-lib.el (diary-sexp-entry-symbol):
|
||||
|
|
|
|||
|
|
@ -98,7 +98,8 @@ This variable specifies how far to search to find such a duplicate.
|
|||
0 means do not search for duplicate unrecognized spellings."
|
||||
:group 'flyspell
|
||||
:version "21.1"
|
||||
:type 'number)
|
||||
:type '(choice (const :tag "no limit" -1)
|
||||
number))
|
||||
|
||||
(defcustom flyspell-delay 3
|
||||
"The number of seconds to wait before checking, after a \"delayed\" command."
|
||||
|
|
|
|||
Loading…
Reference in a new issue