(flyspell-duplicate-distance): Improve custom type.

This commit is contained in:
Reiner Steib 2008-04-06 21:01:50 +00:00
parent 93ab4de3e9
commit e039c77344
2 changed files with 7 additions and 1 deletions

View file

@ -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):

View file

@ -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."