comparison lisp/textmodes/=ispell4.el @ 214:a1430f8459e5

*** empty log message ***
author Brian Preble <rassilon@gnu.org>
date Tue, 12 Mar 1991 19:57:55 +0000
parents 5652ba2db1a7
children 7e4c7ef44243
comparison
equal deleted inserted replaced
213:9fa9f6071bc1 214:a1430f8459e5
200 but don't put it in your private dictonary. 200 but don't put it in your private dictonary.
201 l Lookup. Look for a word in the dictionary by fast binary 201 l Lookup. Look for a word in the dictionary by fast binary
202 search, or search for a regular expression in the dictionary 202 search, or search for a regular expression in the dictionary
203 using grep. 203 using grep.
204 SPACE Accept the word this time, but complain if it is seen again. 204 SPACE Accept the word this time, but complain if it is seen again.
205 q, C-G Leave the command loop. You can come back later with \\[ispell-next]." 205 q, \\[keyboard-quit] Leave the command loop. You can come back later with \\[ispell-next]."
206 (interactive) 206 (interactive)
207 (if (null start) 207 (if (null start)
208 (setq start 0)) 208 (setq start 0))
209 (if (null end) 209 (if (null end)
210 (setq end 0)) 210 (setq end 0))
287 (ispell-dump)) 287 (ispell-dump))
288 288
289 289
290 (defun ispell-word () 290 (defun ispell-word ()
291 "Check the spelling of the word under the cursor. 291 "Check the spelling of the word under the cursor.
292 See `ispell' for more documentation." 292 See `ispell' for more information."
293 (interactive) 293 (interactive)
294 (condition-case err 294 (condition-case err
295 (catch 'quit 295 (catch 'quit
296 (save-window-excursion 296 (save-window-excursion
297 (ispell-point (point) "at point.")) 297 (ispell-point (point) "at point."))