aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Eglen2005-04-08 09:55:48 +0000
committerStephen Eglen2005-04-08 09:55:48 +0000
commitfc2cae5953bc04a6d343faf6b48a91d990a771c0 (patch)
treedf14b971d6e5a94e2c8d4dabe894cfdc1c9467d5
parent859b8989ec703b6e4f70f28d84b9da1d6da58793 (diff)
downloademacs-fc2cae5953bc04a6d343faf6b48a91d990a771c0.tar.gz
emacs-fc2cae5953bc04a6d343faf6b48a91d990a771c0.zip
(flyspell-large-region): Clarify docstring.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/textmodes/flyspell.el8
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0e0d5e13362..1f5db0cd3f4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12005-04-08 Stephen Eglen <stephen@gnu.org>
2
3 * textmodes/flyspell.el (flyspell-large-region): Doc fix.
4
12005-04-08 Kim F. Storm <storm@cua.dk> 52005-04-08 Kim F. Storm <storm@cua.dk>
2 6
3 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to 7 * buff-menu.el (Buffer-menu-mode-map): Map follow-link to
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el
index dfa3a7fa692..dbe8b1cfbc6 100644
--- a/lisp/textmodes/flyspell.el
+++ b/lisp/textmodes/flyspell.el
@@ -221,10 +221,10 @@ Set this to nil if you don't want a modeline indicator."
221 221
222(defcustom flyspell-large-region 1000 222(defcustom flyspell-large-region 1000
223 "*The threshold that determines if a region is small. 223 "*The threshold that determines if a region is small.
224The `flyspell-region' function is invoked if the region is small, the 224If the region is smaller than this number of characters,
225word are checked one after the other using regular flyspell check 225`flyspell-region' checks the words sequentially using regular
226means. If the region is large, a new Ispell process is spawned to get 226flyspell methods. Else, if the region is large, a new Ispell process is
227speed." 227spawned for speed."
228 :group 'flyspell 228 :group 'flyspell
229 :version "21.1" 229 :version "21.1"
230 :type 'number) 230 :type 'number)