comparison lisp/textmodes/flyspell.el @ 93800:7aae3fb72148

(flyspell-duplicate-distance): Improve custom type.
author Reiner Steib <Reiner.Steib@gmx.de>
date Sun, 06 Apr 2008 21:01:50 +0000
parents fc82b6139b36
children e0b01f455de0
comparison
equal deleted inserted replaced
93799:c3b88ef6d3ed 93800:7aae3fb72148
96 This variable specifies how far to search to find such a duplicate. 96 This variable specifies how far to search to find such a duplicate.
97 -1 means no limit (search the whole buffer). 97 -1 means no limit (search the whole buffer).
98 0 means do not search for duplicate unrecognized spellings." 98 0 means do not search for duplicate unrecognized spellings."
99 :group 'flyspell 99 :group 'flyspell
100 :version "21.1" 100 :version "21.1"
101 :type 'number) 101 :type '(choice (const :tag "no limit" -1)
102 number))
102 103
103 (defcustom flyspell-delay 3 104 (defcustom flyspell-delay 3
104 "The number of seconds to wait before checking, after a \"delayed\" command." 105 "The number of seconds to wait before checking, after a \"delayed\" command."
105 :group 'flyspell 106 :group 'flyspell
106 :type 'number) 107 :type 'number)