diff options
| author | Richard M. Stallman | 1993-12-23 04:35:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-12-23 04:35:44 +0000 |
| commit | 925a622cbed336b85c461d07aac9728fe05df80c (patch) | |
| tree | 5cf76dd6715304a59342d3fc309f0a2f5a1ee331 | |
| parent | 6f93191964eb7b953acdab12407852582af3286a (diff) | |
| download | emacs-925a622cbed336b85c461d07aac9728fe05df80c.tar.gz emacs-925a622cbed336b85c461d07aac9728fe05df80c.zip | |
Don't imply private dictionary is always ispell.words.
Don't repeat at load time any bindings that are autoloaded.
| -rw-r--r-- | lisp/textmodes/ispell4.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/textmodes/ispell4.el b/lisp/textmodes/ispell4.el index 6ec6ba2775d..6e9f315a258 100644 --- a/lisp/textmodes/ispell4.el +++ b/lisp/textmodes/ispell4.el | |||
| @@ -41,7 +41,7 @@ | |||
| 41 | "Command for running Ispell.") | 41 | "Command for running Ispell.") |
| 42 | (defvar ispell-command-options nil | 42 | (defvar ispell-command-options nil |
| 43 | "*String (or list of strings) to pass to Ispell as command arguments. | 43 | "*String (or list of strings) to pass to Ispell as command arguments. |
| 44 | You can use this to specify the name of your private dictionary. | 44 | You can specify your private dictionary via the -p <filename> option. |
| 45 | The -S option is always passed to Ispell as the last parameter, | 45 | The -S option is always passed to Ispell as the last parameter, |
| 46 | and need not be mentioned here.") | 46 | and need not be mentioned here.") |
| 47 | 47 | ||
| @@ -163,7 +163,7 @@ that have not already been dumped will be lost." | |||
| 163 | ;; | 163 | ;; |
| 164 | ;; :dump write out the current private dictionary, if necessary. | 164 | ;; :dump write out the current private dictionary, if necessary. |
| 165 | ;; | 165 | ;; |
| 166 | ;; :reload reread `~/ispell.words' | 166 | ;; :reload reread private dictionary (default: `~/ispell.words') |
| 167 | ;; | 167 | ;; |
| 168 | ;; :tex | 168 | ;; :tex |
| 169 | ;; :troff | 169 | ;; :troff |
| @@ -253,7 +253,7 @@ DIGIT Near miss selector. If the misspelled word is close to | |||
| 253 | some words in the dictionary, they are offered as near misses. | 253 | some words in the dictionary, they are offered as near misses. |
| 254 | r Replace. Replace the word with a string you type. Each word | 254 | r Replace. Replace the word with a string you type. Each word |
| 255 | of your new string is also checked. | 255 | of your new string is also checked. |
| 256 | i Insert. Insert this word in your private dictionary (kept in | 256 | i Insert. Insert this word in your private dictionary (by default, |
| 257 | `$HOME/ispell.words'). | 257 | `$HOME/ispell.words'). |
| 258 | a Accept. Accept this word for the rest of this editing session, | 258 | a Accept. Accept this word for the rest of this editing session, |
| 259 | but don't put it in your private dictionary. | 259 | but don't put it in your private dictionary. |
| @@ -378,8 +378,8 @@ With a prefix argument, resume handling of the previous Ispell command." | |||
| 378 | (load-library "spell") | 378 | (load-library "spell") |
| 379 | (define-key esc-map "$" 'spell-word) | 379 | (define-key esc-map "$" 'spell-word) |
| 380 | (spell-word))))))) | 380 | (spell-word))))))) |
| 381 | ;;;###autoload | 381 | |
| 382 | (define-key esc-map "$" 'ispell-word) | 382 | ;;;###autoload (define-key esc-map "$" 'ispell-word) |
| 383 | 383 | ||
| 384 | ;;;###autoload | 384 | ;;;###autoload |
| 385 | (defun ispell-region (start &optional end) | 385 | (defun ispell-region (start &optional end) |