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 | |
| parent | 859b8989ec703b6e4f70f28d84b9da1d6da58793 (diff) | |
| download | emacs-fc2cae5953bc04a6d343faf6b48a91d990a771c0.tar.gz emacs-fc2cae5953bc04a6d343faf6b48a91d990a771c0.zip | |
(flyspell-large-region): Clarify docstring.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 8 |
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 @@ | |||
| 1 | 2005-04-08 Stephen Eglen <stephen@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/flyspell.el (flyspell-large-region): Doc fix. | ||
| 4 | |||
| 1 | 2005-04-08 Kim F. Storm <storm@cua.dk> | 5 | 2005-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. |
| 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) |