diff options
| author | Stephen Eglen | 2005-04-08 09:55:48 +0000 |
|---|---|---|
| committer | Stephen Eglen | 2005-04-08 09:55:48 +0000 |
| commit | fc2cae5953bc04a6d343faf6b48a91d990a771c0 (patch) | |
| tree | df14b971d6e5a94e2c8d4dabe894cfdc1c9467d5 /lisp/textmodes | |
| parent | 859b8989ec703b6e4f70f28d84b9da1d6da58793 (diff) | |
| download | emacs-fc2cae5953bc04a6d343faf6b48a91d990a771c0.tar.gz emacs-fc2cae5953bc04a6d343faf6b48a91d990a771c0.zip | |
(flyspell-large-region): Clarify docstring.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/flyspell.el | 8 |
1 files changed, 4 insertions, 4 deletions
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. |
| 224 | The `flyspell-region' function is invoked if the region is small, the | 224 | If the region is smaller than this number of characters, |
| 225 | word are checked one after the other using regular flyspell check | 225 | `flyspell-region' checks the words sequentially using regular |
| 226 | means. If the region is large, a new Ispell process is spawned to get | 226 | flyspell methods. Else, if the region is large, a new Ispell process is |
| 227 | speed." | 227 | spawned for speed." |
| 228 | :group 'flyspell | 228 | :group 'flyspell |
| 229 | :version "21.1" | 229 | :version "21.1" |
| 230 | :type 'number) | 230 | :type 'number) |