comparison lisp/textmodes/=ispell4.el @ 3591:507f64624555

Apply typo patches from Paul Eggert.
author Jim Blandy <jimb@redhat.com>
date Wed, 09 Jun 1993 11:59:12 +0000
parents 6b8a9fb0537c
children 739ba36097c9
comparison
equal deleted inserted replaced
3590:d5f22061277d 3591:507f64624555
67 (setq ispell-bad-words (cdr ispell-bad-words))) 67 (setq ispell-bad-words (cdr ispell-bad-words)))
68 (setq ispell-recently-accepted nil)) 68 (setq ispell-recently-accepted nil))
69 69
70 (defun kill-ispell () 70 (defun kill-ispell ()
71 "Kill the ispell process. 71 "Kill the ispell process.
72 Any changes the your private dictionay 72 Any changes in your private dictionary
73 that have not already been dumped will be lost." 73 that have not already been dumped will be lost."
74 (interactive) 74 (interactive)
75 (if ispell-process 75 (if ispell-process
76 (delete-process ispell-process)) 76 (delete-process ispell-process))
77 (setq ispell-process nil) 77 (setq ispell-process nil)
139 list of strings near misses 139 list of strings near misses
140 140
141 :file FILENAME scan the named file, and print the file offsets of 141 :file FILENAME scan the named file, and print the file offsets of
142 any misspelled words 142 any misspelled words
143 143
144 :insert WORD put word in private dictonary 144 :insert WORD put word in private dictionary
145 145
146 :accept WORD don't complain about word any more this session 146 :accept WORD don't complain about word any more this session
147 147
148 :dump write out the current private dictionary, if necessary. 148 :dump write out the current private dictionary, if necessary.
149 149
207 207
208 DIGIT Near miss selector. If the misspelled word is close to 208 DIGIT Near miss selector. If the misspelled word is close to
209 some words in the dictionary, they are offered as near misses. 209 some words in the dictionary, they are offered as near misses.
210 r Replace. Replace the word with a string you type. Each word 210 r Replace. Replace the word with a string you type. Each word
211 of your new string is also checked. 211 of your new string is also checked.
212 i Insert. Insert this word in your private dictonary (kept in 212 i Insert. Insert this word in your private dictionary (kept in
213 `$HOME/ispell.words'). 213 `$HOME/ispell.words').
214 a Accept. Accept this word for the rest of this editing session, 214 a Accept. Accept this word for the rest of this editing session,
215 but don't put it in your private dictonary. 215 but don't put it in your private dictionary.
216 l Lookup. Look for a word in the dictionary by fast binary 216 l Lookup. Look for a word in the dictionary by fast binary
217 search, or search for a regular expression in the dictionary 217 search, or search for a regular expression in the dictionary
218 using grep. 218 using grep.
219 SPACE Accept the word this time, but complain if it is seen again. 219 SPACE Accept the word this time, but complain if it is seen again.
220 q, \\[keyboard-quit] Leave the command loop. You can come back later with \\[ispell-next]." 220 q, \\[keyboard-quit] Leave the command loop. You can come back later with \\[ispell-next]."