]> code.delx.au - gnu-emacs/blob - lisp/textmodes/flyspell.el
33e245c4bf632dc57ab50252b4f01a2f2bffe7ae
[gnu-emacs] / lisp / textmodes / flyspell.el
1 ;;; flyspell.el --- on-the-fly spell checker
2
3 ;; Copyright (C) 1998, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: Manuel Serrano <Manuel.Serrano@sophia.inria.fr>
7 ;; Maintainer: FSF
8 ;; Keywords: convenience
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28 ;;
29 ;; Flyspell is a minor Emacs mode performing on-the-fly spelling
30 ;; checking.
31 ;;
32 ;; To enable Flyspell minor mode, type M-x flyspell-mode.
33 ;; This applies only to the current buffer.
34 ;;
35 ;; To enable Flyspell in text representing computer programs, type
36 ;; M-x flyspell-prog-mode.
37 ;; In that mode only text inside comments is checked.
38 ;;
39 ;; Note: consider setting the variable ispell-parser to `tex' to
40 ;; avoid TeX command checking; use `(setq ispell-parser 'tex)'.
41 ;;
42 ;; Some user variables control the behavior of flyspell. They are
43 ;; those defined under the `User variables' comment.
44
45 ;;; Code:
46
47 (require 'ispell)
48
49 ;;*---------------------------------------------------------------------*/
50 ;;* Group ... */
51 ;;*---------------------------------------------------------------------*/
52 (defgroup flyspell nil
53 "Spell checking on the fly."
54 :tag "FlySpell"
55 :prefix "flyspell-"
56 :group 'ispell
57 :group 'processes)
58
59 ;;*---------------------------------------------------------------------*/
60 ;;* User configuration ... */
61 ;;*---------------------------------------------------------------------*/
62 (defcustom flyspell-highlight-flag t
63 "How Flyspell should indicate misspelled words.
64 Non-nil means use highlight, nil means use minibuffer messages."
65 :group 'flyspell
66 :type 'boolean)
67
68 (defcustom flyspell-mark-duplications-flag t
69 "Non-nil means Flyspell reports a repeated word as an error.
70 See `flyspell-mark-duplications-exceptions' to add exceptions to this rule.
71 Detection of repeated words is not implemented in
72 \"large\" regions; see `flyspell-large-region'."
73 :group 'flyspell
74 :type 'boolean)
75
76 (defcustom flyspell-mark-duplications-exceptions
77 '(("francais" . ("nous" "vous")))
78 "A list of exceptions for duplicated words.
79 It should be a list of (LANGUAGE . EXCEPTION-LIST). LANGUAGE is matched
80 against the current dictionary and EXCEPTION-LIST is a list of strings.
81 The duplicated word is downcased before it is compared with the exceptions."
82 :group 'flyspell
83 :type '(alist :key-type string :value-type (repeat string)))
84
85 (defcustom flyspell-sort-corrections nil
86 "Non-nil means, sort the corrections alphabetically before popping them."
87 :group 'flyspell
88 :version "21.1"
89 :type 'boolean)
90
91 (defcustom flyspell-duplicate-distance -1
92 "The maximum distance for finding duplicates of unrecognized words.
93 This applies to the feature that when a word is not found in the dictionary,
94 if the same spelling occurs elsewhere in the buffer,
95 Flyspell uses a different face (`flyspell-duplicate') to highlight it.
96 This variable specifies how far to search to find such a duplicate.
97 -1 means no limit (search the whole buffer).
98 0 means do not search for duplicate unrecognized spellings."
99 :group 'flyspell
100 :version "21.1"
101 :type '(choice (const :tag "no limit" -1)
102 number))
103
104 (defcustom flyspell-delay 3
105 "The number of seconds to wait before checking, after a \"delayed\" command."
106 :group 'flyspell
107 :type 'number)
108
109 (defcustom flyspell-persistent-highlight t
110 "Non-nil means misspelled words remain highlighted until corrected.
111 If this variable is nil, only the most recently detected misspelled word
112 is highlighted."
113 :group 'flyspell
114 :type 'boolean)
115
116 (defcustom flyspell-highlight-properties t
117 "Non-nil means highlight incorrect words even if a property exists for this word."
118 :group 'flyspell
119 :type 'boolean)
120
121 (defcustom flyspell-default-delayed-commands
122 '(self-insert-command
123 delete-backward-char
124 backward-or-forward-delete-char
125 delete-char
126 scrollbar-vertical-drag
127 backward-delete-char-untabify)
128 "The standard list of delayed commands for Flyspell.
129 See `flyspell-delayed-commands'."
130 :group 'flyspell
131 :version "21.1"
132 :type '(repeat (symbol)))
133
134 (defcustom flyspell-delayed-commands nil
135 "List of commands that are \"delayed\" for Flyspell mode.
136 After these commands, Flyspell checking is delayed for a short time,
137 whose length is specified by `flyspell-delay'."
138 :group 'flyspell
139 :type '(repeat (symbol)))
140
141 (defcustom flyspell-default-deplacement-commands
142 '(next-line
143 previous-line
144 scroll-up
145 scroll-down)
146 "The standard list of deplacement commands for Flyspell.
147 See `flyspell-deplacement-commands'."
148 :group 'flyspell
149 :version "21.1"
150 :type '(repeat (symbol)))
151
152 (defcustom flyspell-deplacement-commands nil
153 "List of commands that are \"deplacement\" for Flyspell mode.
154 After these commands, Flyspell checking is performed only if the previous
155 command was not the very same command."
156 :group 'flyspell
157 :version "21.1"
158 :type '(repeat (symbol)))
159
160 (defcustom flyspell-issue-welcome-flag t
161 "Non-nil means that Flyspell should display a welcome message when started."
162 :group 'flyspell
163 :type 'boolean)
164
165 (defcustom flyspell-issue-message-flag t
166 "Non-nil means that Flyspell emits messages when checking words."
167 :group 'flyspell
168 :type 'boolean)
169
170 (defcustom flyspell-incorrect-hook nil
171 "List of functions to be called when incorrect words are encountered.
172 Each function is given three arguments. The first two
173 arguments are the beginning and the end of the incorrect region.
174 The third is either the symbol `doublon' or the list
175 of possible corrections as returned by `ispell-parse-output'.
176
177 If any of the functions return non-nil, the word is not highlighted as
178 incorrect."
179 :group 'flyspell
180 :version "21.1"
181 :type 'hook)
182
183 (defcustom flyspell-default-dictionary nil
184 "A string that is the name of the default dictionary.
185 This is passed to the `ispell-change-dictionary' when flyspell is started.
186 If the variable `ispell-local-dictionary' or `ispell-dictionary' is non-nil
187 when flyspell is started, the value of that variable is used instead
188 of `flyspell-default-dictionary' to select the default dictionary.
189 Otherwise, if `flyspell-default-dictionary' is nil, it means to use
190 Ispell's ultimate default dictionary."
191 :group 'flyspell
192 :version "21.1"
193 :type '(choice string (const :tag "Default" nil)))
194
195 (defcustom flyspell-tex-command-regexp
196 "\\(\\(begin\\|end\\)[ \t]*{\\|\\(cite[a-z*]*\\|label\\|ref\\|eqref\\|usepackage\\|documentclass\\)[ \t]*\\(\\[[^]]*\\]\\)?{[^{}]*\\)"
197 "A string that is the regular expression that matches TeX commands."
198 :group 'flyspell
199 :version "21.1"
200 :type 'string)
201
202 (defcustom flyspell-check-tex-math-command nil
203 "Non-nil means check even inside TeX math environment.
204 TeX math environments are discovered by the TEXMATHP that implemented
205 inside the texmathp.el Emacs package. That package may be found at:
206 http://strw.leidenuniv.nl/~dominik/Tools"
207 :group 'flyspell
208 :type 'boolean)
209
210 (defcustom flyspell-dictionaries-that-consider-dash-as-word-delimiter
211 '("francais" "deutsch8" "norsk")
212 "List of dictionary names that consider `-' as word delimiter."
213 :group 'flyspell
214 :version "21.1"
215 :type '(repeat (string)))
216
217 (defcustom flyspell-abbrev-p
218 nil
219 "If non-nil, add correction to abbreviation table."
220 :group 'flyspell
221 :version "21.1"
222 :type 'boolean)
223
224 (defcustom flyspell-use-global-abbrev-table-p
225 nil
226 "If non-nil, prefer global abbrev table to local abbrev table."
227 :group 'flyspell
228 :version "21.1"
229 :type 'boolean)
230
231 (defcustom flyspell-mode-line-string " Fly"
232 "String displayed on the modeline when flyspell is active.
233 Set this to nil if you don't want a modeline indicator."
234 :group 'flyspell
235 :type '(choice string (const :tag "None" nil)))
236
237 (defcustom flyspell-large-region 1000
238 "The threshold that determines if a region is small.
239 If the region is smaller than this number of characters,
240 `flyspell-region' checks the words sequentially using regular
241 flyspell methods. Else, if the region is large, a new Ispell process is
242 spawned for speed.
243
244 Doubled words are not detected in a large region, because Ispell
245 does not check for them.
246
247 If `flyspell-large-region' is nil, all regions are treated as small."
248 :group 'flyspell
249 :version "21.1"
250 :type '(choice number (const :tag "All small" nil)))
251
252 (defcustom flyspell-insert-function (function insert)
253 "Function for inserting word by flyspell upon correction."
254 :group 'flyspell
255 :type 'function)
256
257 (defcustom flyspell-before-incorrect-word-string nil
258 "String used to indicate an incorrect word starting."
259 :group 'flyspell
260 :type '(choice string (const nil)))
261
262 (defcustom flyspell-after-incorrect-word-string nil
263 "String used to indicate an incorrect word ending."
264 :group 'flyspell
265 :type '(choice string (const nil)))
266
267 (defcustom flyspell-use-meta-tab t
268 "Non-nil means that flyspell uses M-TAB to correct word."
269 :group 'flyspell
270 :type 'boolean)
271
272 (defcustom flyspell-auto-correct-binding
273 [(control ?\;)]
274 "The key binding for flyspell auto correction."
275 :group 'flyspell)
276
277 ;;*---------------------------------------------------------------------*/
278 ;;* Mode specific options */
279 ;;* ------------------------------------------------------------- */
280 ;;* Mode specific options enable users to disable flyspell on */
281 ;;* certain word depending of the emacs mode. For instance, when */
282 ;;* using flyspell with mail-mode add the following expression */
283 ;;* in your .emacs file: */
284 ;;* (add-hook 'mail-mode */
285 ;;* '(lambda () (setq flyspell-generic-check-word-predicate */
286 ;;* 'mail-mode-flyspell-verify))) */
287 ;;*---------------------------------------------------------------------*/
288 (defvar flyspell-generic-check-word-predicate nil
289 "Function providing per-mode customization over which words are flyspelled.
290 Returns t to continue checking, nil otherwise.
291 Flyspell mode sets this variable to whatever is the `flyspell-mode-predicate'
292 property of the major mode name.")
293 (make-variable-buffer-local 'flyspell-generic-check-word-predicate)
294 (defvaralias 'flyspell-generic-check-word-p
295 'flyspell-generic-check-word-predicate)
296
297 ;;*--- mail mode -------------------------------------------------------*/
298 (put 'mail-mode 'flyspell-mode-predicate 'mail-mode-flyspell-verify)
299 (put 'message-mode 'flyspell-mode-predicate 'mail-mode-flyspell-verify)
300 (defvar message-signature-separator)
301 (defun mail-mode-flyspell-verify ()
302 "Function used for `flyspell-generic-check-word-predicate' in Mail mode."
303 (let ((header-end (save-excursion
304 (goto-char (point-min))
305 (re-search-forward
306 (concat "^"
307 (regexp-quote mail-header-separator)
308 "$")
309 nil t)
310 (point)))
311 (signature-begin (save-excursion
312 (goto-char (point-max))
313 (re-search-backward message-signature-separator
314 nil t)
315 (point))))
316 (cond ((< (point) header-end)
317 (and (save-excursion (beginning-of-line)
318 (looking-at "^Subject:"))
319 (> (point) (match-end 0))))
320 ((> (point) signature-begin)
321 nil)
322 (t
323 (save-excursion
324 (beginning-of-line)
325 (not (looking-at "[>}|]\\|To:")))))))
326
327 ;;*--- texinfo mode ----------------------------------------------------*/
328 (put 'texinfo-mode 'flyspell-mode-predicate 'texinfo-mode-flyspell-verify)
329 (defun texinfo-mode-flyspell-verify ()
330 "Function used for `flyspell-generic-check-word-predicate' in Texinfo mode."
331 (save-excursion
332 (forward-word -1)
333 (not (looking-at "@"))))
334
335 ;;*--- tex mode --------------------------------------------------------*/
336 (put 'tex-mode 'flyspell-mode-predicate 'tex-mode-flyspell-verify)
337 (defun tex-mode-flyspell-verify ()
338 "Function used for `flyspell-generic-check-word-predicate' in LaTeX mode."
339 (and
340 (not (save-excursion
341 (re-search-backward "^[ \t]*%%%[ \t]+Local" nil t)))
342 (not (save-excursion
343 (let ((this (point-marker))
344 (e (progn (end-of-line) (point-marker))))
345 (beginning-of-line)
346 (if (re-search-forward "\\\\\\(cite\\|label\\|ref\\){[^}]*}" e t)
347 (and (>= this (match-beginning 0))
348 (<= this (match-end 0)) )))))))
349
350 ;;*--- sgml mode -------------------------------------------------------*/
351 (put 'sgml-mode 'flyspell-mode-predicate 'sgml-mode-flyspell-verify)
352 (put 'html-mode 'flyspell-mode-predicate 'sgml-mode-flyspell-verify)
353 (put 'nxml-mode 'flyspell-mode-predicate 'sgml-mode-flyspell-verify)
354
355 (defun sgml-mode-flyspell-verify ()
356 "Function used for `flyspell-generic-check-word-predicate' in SGML mode."
357 (not (save-excursion
358 (let ((this (point-marker))
359 (s (progn (beginning-of-line) (point-marker)))
360 (e (progn (end-of-line) (point-marker))))
361 (or (progn
362 (goto-char this)
363 (and (re-search-forward "[^<]*>" e t)
364 (= (match-beginning 0) this)))
365 (progn
366 (goto-char this)
367 (and (re-search-backward "<[^>]*" s t)
368 (= (match-end 0) this)))
369 (and (progn
370 (goto-char this)
371 (and (re-search-forward "[^&]*;" e t)
372 (= (match-beginning 0) this)))
373 (progn
374 (goto-char this)
375 (and (re-search-backward "&[^;]*" s t)
376 (= (match-end 0) this)))))))))
377
378 ;;*---------------------------------------------------------------------*/
379 ;;* Programming mode */
380 ;;*---------------------------------------------------------------------*/
381 (defvar flyspell-prog-text-faces
382 '(font-lock-string-face font-lock-comment-face font-lock-doc-face)
383 "Faces corresponding to text in programming-mode buffers.")
384
385 (defun flyspell-generic-progmode-verify ()
386 "Used for `flyspell-generic-check-word-predicate' in programming modes."
387 (let ((f (get-text-property (point) 'face)))
388 (memq f flyspell-prog-text-faces)))
389
390 ;;;###autoload
391 (defun flyspell-prog-mode ()
392 "Turn on `flyspell-mode' for comments and strings."
393 (interactive)
394 (setq flyspell-generic-check-word-predicate
395 'flyspell-generic-progmode-verify)
396 (flyspell-mode 1)
397 (run-hooks 'flyspell-prog-mode-hook))
398
399 ;;*---------------------------------------------------------------------*/
400 ;;* Overlay compatibility */
401 ;;*---------------------------------------------------------------------*/
402 (autoload 'make-overlay "overlay" "Overlay compatibility kit." t)
403 (autoload 'overlayp "overlay" "Overlay compatibility kit." t)
404 (autoload 'overlays-in "overlay" "Overlay compatibility kit." t)
405 (autoload 'delete-overlay "overlay" "Overlay compatibility kit." t)
406 (autoload 'overlays-at "overlay" "Overlay compatibility kit." t)
407 (autoload 'overlay-put "overlay" "Overlay compatibility kit." t)
408 (autoload 'overlay-get "overlay" "Overlay compatibility kit." t)
409 (autoload 'previous-overlay-change "overlay" "Overlay compatibility kit." t)
410
411 ;;*---------------------------------------------------------------------*/
412 ;;* The minor mode declaration. */
413 ;;*---------------------------------------------------------------------*/
414 (defvar flyspell-mouse-map
415 (let ((map (make-sparse-keymap)))
416 (define-key map (if (featurep 'xemacs) [button2] [down-mouse-2])
417 #'flyspell-correct-word)
418 map)
419 "Keymap for Flyspell to put on erroneous words.")
420
421 (defvar flyspell-mode-map
422 (let ((map (make-sparse-keymap)))
423 (if flyspell-use-meta-tab
424 (define-key map "\M-\t" 'flyspell-auto-correct-word))
425 (define-key map flyspell-auto-correct-binding 'flyspell-auto-correct-previous-word)
426 (define-key map [(control ?\,)] 'flyspell-goto-next-error)
427 (define-key map [(control ?\.)] 'flyspell-auto-correct-word)
428 (define-key map [?\C-c ?$] 'flyspell-correct-word-before-point)
429 map)
430 "Minor mode keymap for Flyspell mode--for the whole buffer.")
431
432 ;; dash character machinery
433 (defvar flyspell-consider-dash-as-word-delimiter-flag nil
434 "*Non-nil means that the `-' char is considered as a word delimiter.")
435 (make-variable-buffer-local 'flyspell-consider-dash-as-word-delimiter-flag)
436 (defvar flyspell-dash-dictionary nil)
437 (make-variable-buffer-local 'flyspell-dash-dictionary)
438 (defvar flyspell-dash-local-dictionary nil)
439 (make-variable-buffer-local 'flyspell-dash-local-dictionary)
440
441 ;;*---------------------------------------------------------------------*/
442 ;;* Highlighting */
443 ;;*---------------------------------------------------------------------*/
444 (defface flyspell-incorrect
445 '((((class color)) (:foreground "OrangeRed" :bold t :underline t))
446 (t (:bold t)))
447 "Face used for marking a misspelled word in Flyspell."
448 :group 'flyspell)
449 ;; backward-compatibility alias
450 (put 'flyspell-incorrect-face 'face-alias 'flyspell-incorrect)
451
452 (defface flyspell-duplicate
453 '((((class color)) (:foreground "Gold3" :bold t :underline t))
454 (t (:bold t)))
455 "Face used for marking a misspelled word that appears twice in the buffer.
456 See also `flyspell-duplicate-distance'."
457 :group 'flyspell)
458 ;; backward-compatibility alias
459 (put 'flyspell-duplicate-face 'face-alias 'flyspell-duplicate)
460
461 (defvar flyspell-overlay nil)
462
463 ;;*---------------------------------------------------------------------*/
464 ;;* flyspell-mode ... */
465 ;;*---------------------------------------------------------------------*/
466 ;;;###autoload(defvar flyspell-mode nil)
467 ;;;###autoload
468 (define-minor-mode flyspell-mode
469 "Minor mode performing on-the-fly spelling checking.
470 This spawns a single Ispell process and checks each word.
471 The default flyspell behavior is to highlight incorrect words.
472 With no argument, this command toggles Flyspell mode.
473 With a prefix argument ARG, turn Flyspell minor mode on if ARG is positive,
474 otherwise turn it off.
475
476 Bindings:
477 \\[ispell-word]: correct words (using Ispell).
478 \\[flyspell-auto-correct-word]: automatically correct word.
479 \\[flyspell-auto-correct-previous-word]: automatically correct the last misspelled word.
480 \\[flyspell-correct-word] (or down-mouse-2): popup correct words.
481
482 Hooks:
483 This runs `flyspell-mode-hook' after flyspell is entered.
484
485 Remark:
486 `flyspell-mode' uses `ispell-mode'. Thus all Ispell options are
487 valid. For instance, a personal dictionary can be used by
488 invoking `ispell-change-dictionary'.
489
490 Consider using the `ispell-parser' to check your text. For instance
491 consider adding:
492 \(add-hook 'tex-mode-hook (function (lambda () (setq ispell-parser 'tex))))
493 in your .emacs file.
494
495 \\[flyspell-region] checks all words inside a region.
496 \\[flyspell-buffer] checks the whole buffer."
497 :lighter flyspell-mode-line-string
498 :keymap flyspell-mode-map
499 :group 'flyspell
500 (if flyspell-mode
501 (condition-case ()
502 (flyspell-mode-on)
503 (error (message "Enabling Flyspell mode gave an error")
504 (flyspell-mode -1)))
505 (flyspell-mode-off)))
506
507 ;;;###autoload
508 (defun turn-on-flyspell ()
509 "Unconditionally turn on Flyspell mode."
510 (flyspell-mode 1))
511
512 ;;;###autoload
513 (defun turn-off-flyspell ()
514 "Unconditionally turn off Flyspell mode."
515 (flyspell-mode -1))
516
517 (custom-add-option 'text-mode-hook 'turn-on-flyspell)
518
519 ;;*---------------------------------------------------------------------*/
520 ;;* flyspell-buffers ... */
521 ;;* ------------------------------------------------------------- */
522 ;;* For remembering buffers running flyspell */
523 ;;*---------------------------------------------------------------------*/
524 (defvar flyspell-buffers nil)
525
526 ;;*---------------------------------------------------------------------*/
527 ;;* flyspell-minibuffer-p ... */
528 ;;*---------------------------------------------------------------------*/
529 (defun flyspell-minibuffer-p (buffer)
530 "Is BUFFER a minibuffer?"
531 (let ((ws (get-buffer-window-list buffer t)))
532 (and (consp ws) (window-minibuffer-p (car ws)))))
533
534 ;;*---------------------------------------------------------------------*/
535 ;;* flyspell-accept-buffer-local-defs ... */
536 ;;*---------------------------------------------------------------------*/
537 (defvar flyspell-last-buffer nil
538 "The buffer in which the last flyspell operation took place.")
539
540 (defun flyspell-accept-buffer-local-defs (&optional force)
541 ;; When flyspell-word is used inside a loop (e.g. when processing
542 ;; flyspell-changes), the calls to `ispell-accept-buffer-local-defs' end
543 ;; up dwarfing everything else, so only do it when the buffer has changed.
544 (when (or force (not (eq flyspell-last-buffer (current-buffer))))
545 (setq flyspell-last-buffer (current-buffer))
546 ;; Strange problem: If buffer in current window has font-lock turned on,
547 ;; but SET-BUFFER was called to point to an invisible buffer, this ispell
548 ;; call will reset the buffer to the buffer in the current window.
549 ;; However, it only happens at startup (fix by Albert L. Ting).
550 (save-current-buffer
551 (ispell-accept-buffer-local-defs))
552 (unless (and (eq flyspell-dash-dictionary ispell-dictionary)
553 (eq flyspell-dash-local-dictionary ispell-local-dictionary))
554 ;; The dictionary has changed
555 (setq flyspell-dash-dictionary ispell-dictionary)
556 (setq flyspell-dash-local-dictionary ispell-local-dictionary)
557 (setq flyspell-consider-dash-as-word-delimiter-flag
558 (member (or ispell-local-dictionary ispell-dictionary)
559 flyspell-dictionaries-that-consider-dash-as-word-delimiter)))))
560
561 (defun flyspell-hack-local-variables-hook ()
562 ;; When local variables are loaded, see if the dictionary context
563 ;; has changed.
564 (flyspell-accept-buffer-local-defs 'force))
565
566 (defun flyspell-kill-ispell-hook ()
567 (setq flyspell-last-buffer nil)
568 (dolist (buf (buffer-list))
569 (with-current-buffer buf
570 (kill-local-variable 'flyspell-word-cache-word))))
571
572 ;; Make sure we flush our caches when needed. Do it here rather than in
573 ;; flyspell-mode-on, since flyspell-region may be used without ever turning
574 ;; on flyspell-mode.
575 (add-hook 'ispell-kill-ispell-hook 'flyspell-kill-ispell-hook)
576
577 ;;*---------------------------------------------------------------------*/
578 ;;* flyspell-mode-on ... */
579 ;;*---------------------------------------------------------------------*/
580 (defun flyspell-mode-on ()
581 "Turn Flyspell mode on. Do not use this; use `flyspell-mode' instead."
582 (ispell-maybe-find-aspell-dictionaries)
583 (setq ispell-highlight-face 'flyspell-incorrect)
584 ;; local dictionaries setup
585 (or ispell-local-dictionary ispell-dictionary
586 (if flyspell-default-dictionary
587 (ispell-change-dictionary flyspell-default-dictionary)))
588 ;; we have to force ispell to accept the local definition or
589 ;; otherwise it could be too late, the local dictionary may
590 ;; be forgotten!
591 ;; Pass the `force' argument for the case where flyspell was active already
592 ;; but the buffer's local-defs have been edited.
593 (flyspell-accept-buffer-local-defs 'force)
594 ;; we put the `flyspell-delayed' property on some commands
595 (flyspell-delay-commands)
596 ;; we put the `flyspell-deplacement' property on some commands
597 (flyspell-deplacement-commands)
598 ;; we bound flyspell action to post-command hook
599 (add-hook 'post-command-hook (function flyspell-post-command-hook) t t)
600 ;; we bound flyspell action to pre-command hook
601 (add-hook 'pre-command-hook (function flyspell-pre-command-hook) t t)
602 ;; we bound flyspell action to after-change hook
603 (add-hook 'after-change-functions 'flyspell-after-change-function nil t)
604 ;; we bound flyspell action to hack-local-variables-hook
605 (add-hook 'hack-local-variables-hook
606 (function flyspell-hack-local-variables-hook) t t)
607 ;; set flyspell-generic-check-word-predicate based on the major mode
608 (let ((mode-predicate (get major-mode 'flyspell-mode-predicate)))
609 (if mode-predicate
610 (setq flyspell-generic-check-word-predicate mode-predicate)))
611 ;; the welcome message
612 (if (and flyspell-issue-message-flag
613 flyspell-issue-welcome-flag
614 (interactive-p))
615 (let ((binding (where-is-internal 'flyspell-auto-correct-word
616 nil 'non-ascii)))
617 (message "%s"
618 (if binding
619 (format "Welcome to flyspell. Use %s or Mouse-2 to correct words."
620 (key-description binding))
621 "Welcome to flyspell. Use Mouse-2 to correct words."))))
622 ;; we end with the flyspell hooks
623 (run-hooks 'flyspell-mode-hook))
624
625 ;;*---------------------------------------------------------------------*/
626 ;;* flyspell-delay-commands ... */
627 ;;*---------------------------------------------------------------------*/
628 (defun flyspell-delay-commands ()
629 "Install the standard set of Flyspell delayed commands."
630 (mapc 'flyspell-delay-command flyspell-default-delayed-commands)
631 (mapcar 'flyspell-delay-command flyspell-delayed-commands))
632
633 ;;*---------------------------------------------------------------------*/
634 ;;* flyspell-delay-command ... */
635 ;;*---------------------------------------------------------------------*/
636 (defun flyspell-delay-command (command)
637 "Set COMMAND to be delayed, for Flyspell.
638 When flyspell `post-command-hook' is invoked because a delayed command
639 as been used the current word is not immediately checked.
640 It will be checked only after `flyspell-delay' seconds."
641 (interactive "SDelay Flyspell after Command: ")
642 (put command 'flyspell-delayed t))
643
644 ;;*---------------------------------------------------------------------*/
645 ;;* flyspell-deplacement-commands ... */
646 ;;*---------------------------------------------------------------------*/
647 (defun flyspell-deplacement-commands ()
648 "Install the standard set of Flyspell deplacement commands."
649 (mapc 'flyspell-deplacement-command flyspell-default-deplacement-commands)
650 (mapcar 'flyspell-deplacement-command flyspell-deplacement-commands))
651
652 ;;*---------------------------------------------------------------------*/
653 ;;* flyspell-deplacement-command ... */
654 ;;*---------------------------------------------------------------------*/
655 (defun flyspell-deplacement-command (command)
656 "Set COMMAND that implement cursor movements, for Flyspell.
657 When flyspell `post-command-hook' is invoked because of a deplacement command
658 as been used the current word is checked only if the previous command was
659 not the very same deplacement command."
660 (interactive "SDeplacement Flyspell after Command: ")
661 (put command 'flyspell-deplacement t))
662
663 ;;*---------------------------------------------------------------------*/
664 ;;* flyspell-word-cache ... */
665 ;;*---------------------------------------------------------------------*/
666 (defvar flyspell-word-cache-start nil)
667 (defvar flyspell-word-cache-end nil)
668 (defvar flyspell-word-cache-word nil)
669 (defvar flyspell-word-cache-result '_)
670 (make-variable-buffer-local 'flyspell-word-cache-start)
671 (make-variable-buffer-local 'flyspell-word-cache-end)
672 (make-variable-buffer-local 'flyspell-word-cache-word)
673 (make-variable-buffer-local 'flyspell-word-cache-result)
674
675 ;;*---------------------------------------------------------------------*/
676 ;;* The flyspell pre-hook, store the current position. In the */
677 ;;* post command hook, we will check, if the word at this position */
678 ;;* has to be spell checked. */
679 ;;*---------------------------------------------------------------------*/
680 (defvar flyspell-pre-buffer nil)
681 (defvar flyspell-pre-point nil)
682 (defvar flyspell-pre-column nil)
683 (defvar flyspell-pre-pre-buffer nil)
684 (defvar flyspell-pre-pre-point nil)
685
686 ;;*---------------------------------------------------------------------*/
687 ;;* flyspell-previous-command ... */
688 ;;*---------------------------------------------------------------------*/
689 (defvar flyspell-previous-command nil
690 "The last interactive command checked by Flyspell.")
691
692 ;;*---------------------------------------------------------------------*/
693 ;;* flyspell-pre-command-hook ... */
694 ;;*---------------------------------------------------------------------*/
695 (defun flyspell-pre-command-hook ()
696 "Save the current buffer and point for Flyspell's post-command hook."
697 (interactive)
698 (setq flyspell-pre-buffer (current-buffer))
699 (setq flyspell-pre-point (point))
700 (setq flyspell-pre-column (current-column)))
701
702 ;;*---------------------------------------------------------------------*/
703 ;;* flyspell-mode-off ... */
704 ;;*---------------------------------------------------------------------*/
705 ;;;###autoload
706 (defun flyspell-mode-off ()
707 "Turn Flyspell mode off."
708 ;; we remove the hooks
709 (remove-hook 'post-command-hook (function flyspell-post-command-hook) t)
710 (remove-hook 'pre-command-hook (function flyspell-pre-command-hook) t)
711 (remove-hook 'after-change-functions 'flyspell-after-change-function t)
712 (remove-hook 'hack-local-variables-hook
713 (function flyspell-hack-local-variables-hook) t)
714 ;; we remove all the flyspell hilightings
715 (flyspell-delete-all-overlays)
716 ;; we have to erase pre cache variables
717 (setq flyspell-pre-buffer nil)
718 (setq flyspell-pre-point nil)
719 ;; we mark the mode as killed
720 (setq flyspell-mode nil))
721
722 ;;*---------------------------------------------------------------------*/
723 ;;* flyspell-check-pre-word-p ... */
724 ;;*---------------------------------------------------------------------*/
725 (defun flyspell-check-pre-word-p ()
726 "Return non-nil if we should check the word before point.
727 More precisely, it applies to the word that was before point
728 before the current command."
729 (cond
730 ((or (not (numberp flyspell-pre-point))
731 (not (bufferp flyspell-pre-buffer))
732 (not (buffer-live-p flyspell-pre-buffer)))
733 nil)
734 ((and (eq flyspell-pre-pre-point flyspell-pre-point)
735 (eq flyspell-pre-pre-buffer flyspell-pre-buffer))
736 nil)
737 ((or (and (= flyspell-pre-point (- (point) 1))
738 (eq (char-syntax (char-after flyspell-pre-point)) ?w))
739 (= flyspell-pre-point (point))
740 (= flyspell-pre-point (+ (point) 1)))
741 nil)
742 ((and (symbolp this-command)
743 (not executing-kbd-macro)
744 (or (get this-command 'flyspell-delayed)
745 (and (get this-command 'flyspell-deplacement)
746 (eq flyspell-previous-command this-command)))
747 (or (= (current-column) 0)
748 (= (current-column) flyspell-pre-column)
749 (eq (char-syntax (char-after flyspell-pre-point)) ?w)))
750 nil)
751 ((not (eq (current-buffer) flyspell-pre-buffer))
752 t)
753 ((not (and (numberp flyspell-word-cache-start)
754 (numberp flyspell-word-cache-end)))
755 t)
756 (t
757 (or (< flyspell-pre-point flyspell-word-cache-start)
758 (> flyspell-pre-point flyspell-word-cache-end)))))
759
760 ;;*---------------------------------------------------------------------*/
761 ;;* The flyspell after-change-hook, store the change position. In */
762 ;;* the post command hook, we will check, if the word at this */
763 ;;* position has to be spell checked. */
764 ;;*---------------------------------------------------------------------*/
765 (defvar flyspell-changes nil)
766 (make-variable-buffer-local 'flyspell-changes)
767
768 ;;*---------------------------------------------------------------------*/
769 ;;* flyspell-after-change-function ... */
770 ;;*---------------------------------------------------------------------*/
771 (defun flyspell-after-change-function (start stop len)
772 "Save the current buffer and point for Flyspell's post-command hook."
773 (push (cons start stop) flyspell-changes))
774
775 ;;*---------------------------------------------------------------------*/
776 ;;* flyspell-check-changed-word-p ... */
777 ;;*---------------------------------------------------------------------*/
778 (defun flyspell-check-changed-word-p (start stop)
779 "Return t when the changed word has to be checked.
780 The answer depends of several criteria.
781 Mostly we check word delimiters."
782 (cond
783 ((and (memq (char-after start) '(?\n ? )) (> stop start))
784 t)
785 ((not (numberp flyspell-pre-point))
786 t)
787 ((and (>= flyspell-pre-point start) (<= flyspell-pre-point stop))
788 nil)
789 ((let ((pos (point)))
790 (or (>= pos start) (<= pos stop) (= pos (1+ stop))))
791 nil)
792 (t
793 t)))
794
795 ;;*---------------------------------------------------------------------*/
796 ;;* flyspell-check-word-p ... */
797 ;;*---------------------------------------------------------------------*/
798 (defun flyspell-check-word-p ()
799 "Return t when the word at `point' has to be checked.
800 The answer depends of several criteria.
801 Mostly we check word delimiters."
802 (cond
803 ((<= (- (point-max) 1) (point-min))
804 ;; the buffer is not filled enough
805 nil)
806 ((and (and (> (current-column) 0)
807 (not (eq (current-column) flyspell-pre-column)))
808 (save-excursion
809 (backward-char 1)
810 (and (looking-at (flyspell-get-not-casechars))
811 (or flyspell-consider-dash-as-word-delimiter-flag
812 (not (looking-at "-"))))))
813 ;; yes because we have reached or typed a word delimiter.
814 t)
815 ((symbolp this-command)
816 (cond
817 ((get this-command 'flyspell-deplacement)
818 (not (eq flyspell-previous-command this-command)))
819 ((get this-command 'flyspell-delayed)
820 ;; the current command is not delayed, that
821 ;; is that we must check the word now
822 (and (not unread-command-events)
823 (sit-for flyspell-delay)))
824 (t t)))
825 (t t)))
826
827 ;;*---------------------------------------------------------------------*/
828 ;;* flyspell-debug-signal-no-check ... */
829 ;;*---------------------------------------------------------------------*/
830 (defun flyspell-debug-signal-no-check (msg obj)
831 (setq debug-on-error t)
832 (with-current-buffer (get-buffer-create "*flyspell-debug*")
833 (erase-buffer)
834 (insert "NO-CHECK:\n")
835 (insert (format " %S : %S\n" msg obj))))
836
837 ;;*---------------------------------------------------------------------*/
838 ;;* flyspell-debug-signal-pre-word-checked ... */
839 ;;*---------------------------------------------------------------------*/
840 (defun flyspell-debug-signal-pre-word-checked ()
841 (setq debug-on-error t)
842 (with-current-buffer (get-buffer-create "*flyspell-debug*")
843 (insert "PRE-WORD:\n")
844 (insert (format " pre-point : %S\n" flyspell-pre-point))
845 (insert (format " pre-buffer : %S\n" flyspell-pre-buffer))
846 (insert (format " cache-start: %S\n" flyspell-word-cache-start))
847 (insert (format " cache-end : %S\n" flyspell-word-cache-end))
848 (goto-char (point-max))))
849
850 ;;*---------------------------------------------------------------------*/
851 ;;* flyspell-debug-signal-word-checked ... */
852 ;;*---------------------------------------------------------------------*/
853 (defun flyspell-debug-signal-word-checked ()
854 (setq debug-on-error t)
855 (let ((oldbuf (current-buffer))
856 (point (point)))
857 (with-current-buffer (get-buffer-create "*flyspell-debug*")
858 (insert "WORD:\n")
859 (insert (format " this-cmd : %S\n" this-command))
860 (insert (format " delayed : %S\n" (and (symbolp this-command)
861 (get this-command 'flyspell-delayed))))
862 (insert (format " point : %S\n" point))
863 (insert (format " prev-char : [%c] %S\n"
864 (with-current-buffer oldbuf
865 (let ((c (if (> (point) (point-min))
866 (save-excursion
867 (backward-char 1)
868 (char-after (point)))
869 ? )))
870 c))
871 (with-current-buffer oldbuf
872 (let ((c (if (> (point) (point-min))
873 (save-excursion
874 (backward-char 1)
875 (and (and (looking-at (flyspell-get-not-casechars)) 1)
876 (and (or flyspell-consider-dash-as-word-delimiter-flag
877 (not (looking-at "\\-"))) 2))))))
878 c))))
879 (insert (format " because : %S\n"
880 (cond
881 ((not (and (symbolp this-command)
882 (get this-command 'flyspell-delayed)))
883 ;; the current command is not delayed, that
884 ;; is that we must check the word now
885 'not-delayed)
886 ((with-current-buffer oldbuf
887 (let ((c (if (> (point) (point-min))
888 (save-excursion
889 (backward-char 1)
890 (and (looking-at (flyspell-get-not-casechars))
891 (or flyspell-consider-dash-as-word-delimiter-flag
892 (not (looking-at "\\-"))))))))
893 c))
894 ;; yes because we have reached or typed a word delimiter.
895 'separator)
896 ((not (integerp flyspell-delay))
897 ;; yes because the user had set up a no-delay configuration.
898 'no-delay)
899 (t
900 'sit-for))))
901 (goto-char (point-max)))))
902
903 ;;*---------------------------------------------------------------------*/
904 ;;* flyspell-debug-signal-changed-checked ... */
905 ;;*---------------------------------------------------------------------*/
906 (defun flyspell-debug-signal-changed-checked ()
907 (setq debug-on-error t)
908 (let ((point (point)))
909 (with-current-buffer (get-buffer-create "*flyspell-debug*")
910 (insert "CHANGED WORD:\n")
911 (insert (format " point : %S\n" point))
912 (goto-char (point-max)))))
913
914 ;;*---------------------------------------------------------------------*/
915 ;;* flyspell-post-command-hook ... */
916 ;;* ------------------------------------------------------------- */
917 ;;* It is possible that we check several words: */
918 ;;* 1- the current word is checked if the predicate */
919 ;;* FLYSPELL-CHECK-WORD-P is true */
920 ;;* 2- the word that used to be the current word before the */
921 ;;* THIS-COMMAND is checked if: */
922 ;;* a- the previous word is different from the current word */
923 ;;* b- the previous word as not just been checked by the */
924 ;;* previous FLYSPELL-POST-COMMAND-HOOK */
925 ;;* 3- the words changed by the THIS-COMMAND that are neither the */
926 ;;* previous word nor the current word */
927 ;;*---------------------------------------------------------------------*/
928 (defun flyspell-post-command-hook ()
929 "The `post-command-hook' used by flyspell to check a word in-the-fly."
930 (interactive)
931 (let ((command this-command)
932 ;; Prevent anything we do from affecting the mark.
933 deactivate-mark)
934 (if (flyspell-check-pre-word-p)
935 (with-current-buffer flyspell-pre-buffer
936 '(flyspell-debug-signal-pre-word-checked)
937 (save-excursion
938 (goto-char flyspell-pre-point)
939 (flyspell-word))))
940 (if (flyspell-check-word-p)
941 (progn
942 '(flyspell-debug-signal-word-checked)
943 (flyspell-word)
944 ;; we remember which word we have just checked.
945 ;; this will be used next time we will check a word
946 ;; to compare the next current word with the word
947 ;; that as been registered in the pre-command-hook
948 ;; that is these variables are used within the predicate
949 ;; FLYSPELL-CHECK-PRE-WORD-P
950 (setq flyspell-pre-pre-buffer (current-buffer))
951 (setq flyspell-pre-pre-point (point)))
952 (progn
953 (setq flyspell-pre-pre-buffer nil)
954 (setq flyspell-pre-pre-point nil)
955 ;; when a word is not checked because of a delayed command
956 ;; we do not disable the ispell cache.
957 (if (and (symbolp this-command) (get this-command 'flyspell-delayed))
958 (progn
959 (setq flyspell-word-cache-end -1)
960 (setq flyspell-word-cache-result '_)))))
961 (while (and (not (input-pending-p)) (consp flyspell-changes))
962 (let ((start (car (car flyspell-changes)))
963 (stop (cdr (car flyspell-changes))))
964 (if (flyspell-check-changed-word-p start stop)
965 (save-excursion
966 '(flyspell-debug-signal-changed-checked)
967 (goto-char start)
968 (flyspell-word)))
969 (setq flyspell-changes (cdr flyspell-changes))))
970 (setq flyspell-previous-command command)))
971
972 ;;*---------------------------------------------------------------------*/
973 ;;* flyspell-notify-misspell ... */
974 ;;*---------------------------------------------------------------------*/
975 (defun flyspell-notify-misspell (word poss)
976 (let ((replacements (if (stringp poss)
977 poss
978 (if flyspell-sort-corrections
979 (sort (car (cdr (cdr poss))) 'string<)
980 (car (cdr (cdr poss)))))))
981 (if flyspell-issue-message-flag
982 (message "misspelling `%s' %S" word replacements))))
983
984 ;;*---------------------------------------------------------------------*/
985 ;;* flyspell-word-search-backward ... */
986 ;;*---------------------------------------------------------------------*/
987 (defun flyspell-word-search-backward (word bound)
988 (save-excursion
989 (let ((r '())
990 (inhibit-point-motion-hooks t)
991 p)
992 (while (and (not r) (setq p (search-backward word bound t)))
993 (let ((lw (flyspell-get-word '())))
994 (if (and (consp lw) (string-equal (car lw) word))
995 (setq r p)
996 (goto-char p))))
997 r)))
998
999 ;;*---------------------------------------------------------------------*/
1000 ;;* flyspell-word-search-forward ... */
1001 ;;*---------------------------------------------------------------------*/
1002 (defun flyspell-word-search-forward (word bound)
1003 (save-excursion
1004 (let ((r '())
1005 (inhibit-point-motion-hooks t)
1006 p)
1007 (while (and (not r) (setq p (search-forward word bound t)))
1008 (let ((lw (flyspell-get-word '())))
1009 (if (and (consp lw) (string-equal (car lw) word))
1010 (setq r p)
1011 (goto-char (1+ p)))))
1012 r)))
1013
1014 ;;*---------------------------------------------------------------------*/
1015 ;;* flyspell-word ... */
1016 ;;*---------------------------------------------------------------------*/
1017 (defun flyspell-word (&optional following)
1018 "Spell check a word."
1019 (interactive (list ispell-following-word))
1020 (save-excursion
1021 ;; use the correct dictionary
1022 (flyspell-accept-buffer-local-defs)
1023 (let* ((cursor-location (point))
1024 (flyspell-word (flyspell-get-word following))
1025 start end poss word ispell-filter)
1026 (if (or (eq flyspell-word nil)
1027 (and (fboundp flyspell-generic-check-word-predicate)
1028 (not (funcall flyspell-generic-check-word-predicate))))
1029 t
1030 (progn
1031 ;; destructure return flyspell-word info list.
1032 (setq start (car (cdr flyspell-word))
1033 end (car (cdr (cdr flyspell-word)))
1034 word (car flyspell-word))
1035 ;; before checking in the directory, we check for doublons.
1036 (cond
1037 ((and (or (not (eq ispell-parser 'tex))
1038 (and (> start (point-min))
1039 (not (memq (char-after (1- start)) '(?\} ?\\)))))
1040 flyspell-mark-duplications-flag
1041 (not (catch 'exception
1042 (dolist (except flyspell-mark-duplications-exceptions)
1043 (and (string= (or ispell-local-dictionary
1044 ispell-dictionary)
1045 (car except))
1046 (member (downcase word) (cdr except))
1047 (throw 'exception t)))))
1048 (save-excursion
1049 (goto-char start)
1050 (let* ((bound
1051 (- start
1052 (- end start)
1053 (- (skip-chars-backward " \t\n\f"))))
1054 (p (when (>= bound (point-min))
1055 (flyspell-word-search-backward word bound))))
1056 (and p (/= p start)))))
1057 ;; yes, this is a doublon
1058 (flyspell-highlight-incorrect-region start end 'doublon)
1059 nil)
1060 ((and (eq flyspell-word-cache-start start)
1061 (eq flyspell-word-cache-end end)
1062 (string-equal flyspell-word-cache-word word))
1063 ;; this word had been already checked, we skip
1064 flyspell-word-cache-result)
1065 ((and (eq ispell-parser 'tex)
1066 (flyspell-tex-command-p flyspell-word))
1067 ;; this is a correct word (because a tex command)
1068 (flyspell-unhighlight-at start)
1069 (if (> end start)
1070 (flyspell-unhighlight-at (- end 1)))
1071 t)
1072 (t
1073 ;; we setup the cache
1074 (setq flyspell-word-cache-start start)
1075 (setq flyspell-word-cache-end end)
1076 (setq flyspell-word-cache-word word)
1077 ;; now check spelling of word.
1078 (ispell-send-string "%\n")
1079 ;; put in verbose mode
1080 (ispell-send-string (concat "^" word "\n"))
1081 ;; we mark the ispell process so it can be killed
1082 ;; when emacs is exited without query
1083 (set-process-query-on-exit-flag ispell-process nil)
1084 ;; Wait until ispell has processed word. Since this code is often
1085 ;; executed from post-command-hook but the ispell process may not
1086 ;; be responsive, it's important to make sure we re-enable C-g.
1087 (with-local-quit
1088 (while (progn
1089 (accept-process-output ispell-process)
1090 (not (string= "" (car ispell-filter))))))
1091 ;; (ispell-send-string "!\n")
1092 ;; back to terse mode.
1093 ;; Remove leading empty element
1094 (setq ispell-filter (cdr ispell-filter))
1095 ;; ispell process should return something after word is sent.
1096 ;; Tag word as valid (i.e., skip) otherwise
1097 (or ispell-filter
1098 (setq ispell-filter '(*)))
1099 (if (consp ispell-filter)
1100 (setq poss (ispell-parse-output (car ispell-filter))))
1101 (let ((res (cond ((eq poss t)
1102 ;; correct
1103 (setq flyspell-word-cache-result t)
1104 (flyspell-unhighlight-at start)
1105 (if (> end start)
1106 (flyspell-unhighlight-at (- end 1)))
1107 t)
1108 ((and (stringp poss) flyspell-highlight-flag)
1109 ;; correct
1110 (setq flyspell-word-cache-result t)
1111 (flyspell-unhighlight-at start)
1112 (if (> end start)
1113 (flyspell-unhighlight-at (- end 1)))
1114 t)
1115 ((null poss)
1116 (setq flyspell-word-cache-result t)
1117 (flyspell-unhighlight-at start)
1118 (if (> end start)
1119 (flyspell-unhighlight-at (- end 1)))
1120 t)
1121 ((or (and (< flyspell-duplicate-distance 0)
1122 (or (save-excursion
1123 (goto-char start)
1124 (flyspell-word-search-backward
1125 word
1126 (point-min)))
1127 (save-excursion
1128 (goto-char end)
1129 (flyspell-word-search-forward
1130 word
1131 (point-max)))))
1132 (and (> flyspell-duplicate-distance 0)
1133 (or (save-excursion
1134 (goto-char start)
1135 (flyspell-word-search-backward
1136 word
1137 (- start
1138 flyspell-duplicate-distance)))
1139 (save-excursion
1140 (goto-char end)
1141 (flyspell-word-search-forward
1142 word
1143 (+ end
1144 flyspell-duplicate-distance))))))
1145 ;; This is a misspelled word which occurs
1146 ;; twice within flyspell-duplicate-distance.
1147 (setq flyspell-word-cache-result nil)
1148 (if flyspell-highlight-flag
1149 (flyspell-highlight-duplicate-region
1150 start end poss)
1151 (message "duplicate `%s'" word))
1152 nil)
1153 (t
1154 (setq flyspell-word-cache-result nil)
1155 ;; incorrect highlight the location
1156 (if flyspell-highlight-flag
1157 (flyspell-highlight-incorrect-region
1158 start end poss)
1159 (flyspell-notify-misspell word poss))
1160 nil))))
1161 ;; return to original location
1162 (goto-char cursor-location)
1163 (if ispell-quit (setq ispell-quit nil))
1164 res))))))))
1165
1166 ;;*---------------------------------------------------------------------*/
1167 ;;* flyspell-tex-math-initialized ... */
1168 ;;*---------------------------------------------------------------------*/
1169 (defvar flyspell-tex-math-initialized nil)
1170
1171 ;;*---------------------------------------------------------------------*/
1172 ;;* flyspell-math-tex-command-p ... */
1173 ;;* ------------------------------------------------------------- */
1174 ;;* This function uses the texmathp package to check if (point) */
1175 ;;* is within a tex command. In order to avoid using */
1176 ;;* condition-case each time we use the variable */
1177 ;;* flyspell-tex-math-initialized to make a special case the first */
1178 ;;* time that function is called. */
1179 ;;*---------------------------------------------------------------------*/
1180 (defun flyspell-math-tex-command-p ()
1181 (when (fboundp 'texmathp)
1182 (cond
1183 (flyspell-check-tex-math-command
1184 nil)
1185 ((eq flyspell-tex-math-initialized t)
1186 (texmathp))
1187 ((eq flyspell-tex-math-initialized 'error)
1188 nil)
1189 (t
1190 (setq flyspell-tex-math-initialized t)
1191 (condition-case nil
1192 (texmathp)
1193 (error (progn
1194 (setq flyspell-tex-math-initialized 'error)
1195 nil)))))))
1196
1197 ;;*---------------------------------------------------------------------*/
1198 ;;* flyspell-tex-command-p ... */
1199 ;;*---------------------------------------------------------------------*/
1200 (defun flyspell-tex-command-p (word)
1201 "Return t if WORD is a TeX command."
1202 (or (save-excursion
1203 (let ((b (car (cdr word))))
1204 (and (re-search-backward "\\\\" (- (point) 100) t)
1205 (or (= (match-end 0) b)
1206 (and (goto-char (match-end 0))
1207 (looking-at flyspell-tex-command-regexp)
1208 (>= (match-end 0) b))))))
1209 (flyspell-math-tex-command-p)))
1210
1211 ;;*---------------------------------------------------------------------*/
1212 ;;* flyspell-casechars-cache ... */
1213 ;;*---------------------------------------------------------------------*/
1214 (defvar flyspell-casechars-cache nil)
1215 (defvar flyspell-ispell-casechars-cache nil)
1216 (make-variable-buffer-local 'flyspell-casechars-cache)
1217 (make-variable-buffer-local 'flyspell-ispell-casechars-cache)
1218
1219 ;;*---------------------------------------------------------------------*/
1220 ;;* flyspell-get-casechars ... */
1221 ;;*---------------------------------------------------------------------*/
1222 (defun flyspell-get-casechars ()
1223 "This function builds a string that is the regexp of word chars.
1224 In order to avoid one useless string construction,
1225 this function changes the last char of the `ispell-casechars' string."
1226 (let ((ispell-casechars (ispell-get-casechars)))
1227 (cond
1228 ((eq ispell-parser 'tex)
1229 (setq flyspell-ispell-casechars-cache ispell-casechars)
1230 (setq flyspell-casechars-cache
1231 (concat (substring ispell-casechars
1232 0
1233 (- (length ispell-casechars) 1))
1234 "]"))
1235 flyspell-casechars-cache)
1236 (t
1237 (setq flyspell-ispell-casechars-cache ispell-casechars)
1238 (setq flyspell-casechars-cache ispell-casechars)
1239 flyspell-casechars-cache))))
1240
1241 ;;*---------------------------------------------------------------------*/
1242 ;;* flyspell-get-not-casechars-cache ... */
1243 ;;*---------------------------------------------------------------------*/
1244 (defvar flyspell-not-casechars-cache nil)
1245 (defvar flyspell-ispell-not-casechars-cache nil)
1246 (make-variable-buffer-local 'flyspell-not-casechars-cache)
1247 (make-variable-buffer-local 'flyspell-ispell-not-casechars-cache)
1248
1249 ;;*---------------------------------------------------------------------*/
1250 ;;* flyspell-get-not-casechars ... */
1251 ;;*---------------------------------------------------------------------*/
1252 (defun flyspell-get-not-casechars ()
1253 "This function builds a string that is the regexp of non-word chars."
1254 (let ((ispell-not-casechars (ispell-get-not-casechars)))
1255 (cond
1256 ((eq ispell-parser 'tex)
1257 (setq flyspell-ispell-not-casechars-cache ispell-not-casechars)
1258 (setq flyspell-not-casechars-cache
1259 (concat (substring ispell-not-casechars
1260 0
1261 (- (length ispell-not-casechars) 1))
1262 "]"))
1263 flyspell-not-casechars-cache)
1264 (t
1265 (setq flyspell-ispell-not-casechars-cache ispell-not-casechars)
1266 (setq flyspell-not-casechars-cache ispell-not-casechars)
1267 flyspell-not-casechars-cache))))
1268
1269 ;;*---------------------------------------------------------------------*/
1270 ;;* flyspell-get-word ... */
1271 ;;*---------------------------------------------------------------------*/
1272 (defun flyspell-get-word (following &optional extra-otherchars)
1273 "Return the word for spell-checking according to Ispell syntax.
1274 If optional argument FOLLOWING is non-nil or if `flyspell-following-word'
1275 is non-nil when called interactively, then the following word
1276 \(rather than preceding\) is checked when the cursor is not over a word.
1277 Optional second argument contains otherchars that can be included in word
1278 many times.
1279
1280 Word syntax described by `flyspell-dictionary-alist' (which see)."
1281 (let* ((flyspell-casechars (flyspell-get-casechars))
1282 (flyspell-not-casechars (flyspell-get-not-casechars))
1283 (ispell-otherchars (ispell-get-otherchars))
1284 (ispell-many-otherchars-p (ispell-get-many-otherchars-p))
1285 (word-regexp (concat flyspell-casechars
1286 "+\\("
1287 (if (not (string= "" ispell-otherchars))
1288 (concat ispell-otherchars "?"))
1289 (if extra-otherchars
1290 (concat extra-otherchars "?"))
1291 flyspell-casechars
1292 "+\\)"
1293 (if (or ispell-many-otherchars-p
1294 extra-otherchars)
1295 "*" "?")))
1296 did-it-once prevpt
1297 start end word)
1298 ;; find the word
1299 (if (not (looking-at flyspell-casechars))
1300 (if following
1301 (re-search-forward flyspell-casechars nil t)
1302 (re-search-backward flyspell-casechars nil t)))
1303 ;; move to front of word
1304 (re-search-backward flyspell-not-casechars nil 'start)
1305 (while (and (or (and (not (string= "" ispell-otherchars))
1306 (looking-at ispell-otherchars))
1307 (and extra-otherchars (looking-at extra-otherchars)))
1308 (not (bobp))
1309 (or (not did-it-once)
1310 ispell-many-otherchars-p)
1311 (not (eq prevpt (point))))
1312 (if (and extra-otherchars (looking-at extra-otherchars))
1313 (progn
1314 (backward-char 1)
1315 (if (looking-at flyspell-casechars)
1316 (re-search-backward flyspell-not-casechars nil 'move)))
1317 (setq did-it-once t
1318 prevpt (point))
1319 (backward-char 1)
1320 (if (looking-at flyspell-casechars)
1321 (re-search-backward flyspell-not-casechars nil 'move)
1322 (backward-char -1))))
1323 ;; Now mark the word and save to string.
1324 (if (not (re-search-forward word-regexp nil t))
1325 nil
1326 (progn
1327 (setq start (match-beginning 0)
1328 end (point)
1329 word (buffer-substring-no-properties start end))
1330 (list word start end)))))
1331
1332 ;;*---------------------------------------------------------------------*/
1333 ;;* flyspell-small-region ... */
1334 ;;*---------------------------------------------------------------------*/
1335 (defun flyspell-small-region (beg end)
1336 "Flyspell text between BEG and END."
1337 (save-excursion
1338 (if (> beg end)
1339 (let ((old beg))
1340 (setq beg end)
1341 (setq end old)))
1342 (goto-char beg)
1343 (let ((count 0))
1344 (while (< (point) end)
1345 (if (and flyspell-issue-message-flag (= count 100))
1346 (progn
1347 (message "Spell Checking...%d%%"
1348 (* 100 (/ (float (- (point) beg)) (- end beg))))
1349 (setq count 0))
1350 (setq count (+ 1 count)))
1351 (flyspell-word)
1352 (sit-for 0)
1353 (let ((cur (point)))
1354 (forward-word 1)
1355 (if (and (< (point) end) (> (point) (+ cur 1)))
1356 (backward-char 1)))))
1357 (backward-char 1)
1358 (if flyspell-issue-message-flag (message "Spell Checking completed."))
1359 (flyspell-word)))
1360
1361 ;;*---------------------------------------------------------------------*/
1362 ;;* flyspell-external-ispell-process ... */
1363 ;;*---------------------------------------------------------------------*/
1364 (defvar flyspell-external-ispell-process '()
1365 "The external Flyspell Ispell process.")
1366
1367 ;;*---------------------------------------------------------------------*/
1368 ;;* flyspell-external-ispell-buffer ... */
1369 ;;*---------------------------------------------------------------------*/
1370 (defvar flyspell-external-ispell-buffer '())
1371 (defvar flyspell-large-region-buffer '())
1372 (defvar flyspell-large-region-beg (point-min))
1373 (defvar flyspell-large-region-end (point-max))
1374
1375 ;;*---------------------------------------------------------------------*/
1376 ;;* flyspell-external-point-words ... */
1377 ;;*---------------------------------------------------------------------*/
1378 (defun flyspell-external-point-words ()
1379 "Mark words from a buffer listing incorrect words in order of appearance.
1380 The list of incorrect words should be in `flyspell-external-ispell-buffer'.
1381 \(We finish by killing that buffer and setting the variable to nil.)
1382 The buffer to mark them in is `flyspell-large-region-buffer'."
1383 (let (words-not-found
1384 (ispell-otherchars (ispell-get-otherchars))
1385 (buffer-scan-pos flyspell-large-region-beg)
1386 case-fold-search)
1387 (with-current-buffer flyspell-external-ispell-buffer
1388 (goto-char (point-min))
1389 ;; Loop over incorrect words, in the order they were reported,
1390 ;; which is also the order they appear in the buffer being checked.
1391 (while (re-search-forward "\\([^\n]+\\)\n" nil t)
1392 ;; Bind WORD to the next one.
1393 (let ((word (match-string 1)) (wordpos (point)))
1394 ;; Here there used to be code to see if WORD is the same
1395 ;; as the previous iteration, and count the number of consecutive
1396 ;; identical words, and the loop below would search for that many.
1397 ;; That code seemed to be incorrect, and on principle, should
1398 ;; be unnecessary too. -- rms.
1399 (if flyspell-issue-message-flag
1400 (message "Spell Checking...%d%% [%s]"
1401 (* 100 (/ (float (point)) (point-max)))
1402 word))
1403 (with-current-buffer flyspell-large-region-buffer
1404 (goto-char buffer-scan-pos)
1405 (let ((keep t))
1406 ;; Iterate on string search until string is found as word,
1407 ;; not as substring
1408 (while keep
1409 (if (search-forward word
1410 flyspell-large-region-end t)
1411 (let* ((found-list
1412 (save-excursion
1413 ;; Move back into the match
1414 ;; so flyspell-get-word will find it.
1415 (forward-char -1)
1416 (flyspell-get-word nil)))
1417 (found (car found-list))
1418 (found-length (length found))
1419 (misspell-length (length word)))
1420 (when (or
1421 ;; Size matches, we really found it.
1422 (= found-length misspell-length)
1423 ;; Matches as part of a boundary-char separated word
1424 (member word
1425 (split-string found ispell-otherchars))
1426 ;; Misspelling has higher length than
1427 ;; what flyspell considers the
1428 ;; word. Caused by boundary-chars
1429 ;; mismatch. Validating seems safe.
1430 (< found-length misspell-length)
1431 ;; ispell treats beginning of some TeX
1432 ;; commands as nroff control sequences
1433 ;; and strips them in the list of
1434 ;; misspelled words thus giving a
1435 ;; non-existent word. Skip if ispell
1436 ;; is used, string is a TeX command
1437 ;; (char before beginning of word is
1438 ;; backslash) and none of the previous
1439 ;; contitions match
1440 (and (not ispell-really-aspell)
1441 (save-excursion
1442 (goto-char (- (nth 1 found-list) 1))
1443 (if (looking-at "[\\]" )
1444 t
1445 nil))))
1446 (setq keep nil)
1447 (flyspell-word)
1448 ;; Search for next misspelled word will begin from
1449 ;; end of last validated match.
1450 (setq buffer-scan-pos (point))))
1451 ;; Record if misspelling is not found and try new one
1452 (add-to-list 'words-not-found
1453 (concat " -> " word " - "
1454 (int-to-string wordpos)))
1455 (setq keep nil)))))))
1456 ;; we are done
1457 (if flyspell-issue-message-flag (message "Spell Checking completed.")))
1458 ;; Warn about not found misspellings
1459 (dolist (word words-not-found)
1460 (message "%s: word not found" word))
1461 ;; Kill and forget the buffer with the list of incorrect words.
1462 (kill-buffer flyspell-external-ispell-buffer)
1463 (setq flyspell-external-ispell-buffer nil)))
1464
1465 ;;*---------------------------------------------------------------------*/
1466 ;;* flyspell-process-localwords ... */
1467 ;;* ------------------------------------------------------------- */
1468 ;;* This function is used to prevent marking of words explicitly */
1469 ;;* declared correct. */
1470 ;;*---------------------------------------------------------------------*/
1471 (defun flyspell-process-localwords (misspellings-buffer)
1472 (let (localwords case-fold-search
1473 (ispell-casechars (ispell-get-casechars)))
1474 ;; Get localwords from the original buffer
1475 (save-excursion
1476 (goto-char (point-min))
1477 ;; Localwords parsing copied from ispell.el.
1478 (while (search-forward ispell-words-keyword nil t)
1479 (let ((end (save-excursion (end-of-line) (point)))
1480 string)
1481 ;; buffer-local words separated by a space, and can contain
1482 ;; any character other than a space. Not rigorous enough.
1483 (while (re-search-forward " *\\([^ ]+\\)" end t)
1484 (setq string (buffer-substring-no-properties (match-beginning 1)
1485 (match-end 1)))
1486 ;; This can fail when string contains a word with invalid chars.
1487 ;; Error handling needs to be added between Ispell and Emacs.
1488 (if (and (< 1 (length string))
1489 (equal 0 (string-match ispell-casechars string)))
1490 (push string localwords))))))
1491 ;; Remove localwords matches from misspellings-buffer.
1492 ;; The usual mechanism of communicating the local words to ispell
1493 ;; does not affect the special ispell process used by
1494 ;; flyspell-large-region.
1495 (with-current-buffer misspellings-buffer
1496 (save-excursion
1497 (dolist (word localwords)
1498 (goto-char (point-min))
1499 (let ((regexp (concat "^" word "\n")))
1500 (while (re-search-forward regexp nil t)
1501 (delete-region (match-beginning 0) (match-end 0)))))))))
1502
1503 ;;* ---------------------------------------------------------------
1504 ;;* flyspell-check-region-doublons
1505 ;;* ---------------------------------------------------------------
1506 (defun flyspell-check-region-doublons (beg end)
1507 "Check for adjacent duplicated words (doublons) in the given region."
1508 (save-excursion
1509 (goto-char beg)
1510 (flyspell-word) ; Make sure current word is checked
1511 (backward-word 1)
1512 (while (and (< (point) end)
1513 (re-search-forward "\\<\\(\\w+\\)\\>[ \n\t\f]+\\1\\>"
1514 end 'move))
1515 (flyspell-word)
1516 (backward-word 1))
1517 (flyspell-word)))
1518
1519 ;;*---------------------------------------------------------------------*/
1520 ;;* flyspell-large-region ... */
1521 ;;*---------------------------------------------------------------------*/
1522 (defun flyspell-large-region (beg end)
1523 (let* ((curbuf (current-buffer))
1524 (buffer (get-buffer-create "*flyspell-region*")))
1525 (setq flyspell-external-ispell-buffer buffer)
1526 (setq flyspell-large-region-buffer curbuf)
1527 (setq flyspell-large-region-beg beg)
1528 (setq flyspell-large-region-end end)
1529 (flyspell-accept-buffer-local-defs)
1530 (set-buffer buffer)
1531 (erase-buffer)
1532 ;; this is done, we can start checking...
1533 (if flyspell-issue-message-flag (message "Checking region..."))
1534 (set-buffer curbuf)
1535 (ispell-check-version)
1536 ;; Local dictionary becomes the global dictionary in use.
1537 (setq ispell-current-dictionary
1538 (or ispell-local-dictionary ispell-dictionary))
1539 (setq ispell-current-personal-dictionary
1540 (or ispell-local-pdict ispell-personal-dictionary))
1541 (let ((args (ispell-get-ispell-args))
1542 (encoding (ispell-get-coding-system))
1543 c)
1544 (if (and ispell-current-dictionary ; use specified dictionary
1545 (not (member "-d" args))) ; only define if not overridden
1546 (setq args
1547 (append (list "-d" ispell-current-dictionary) args)))
1548 (if ispell-current-personal-dictionary ; use specified pers dict
1549 (setq args
1550 (append args
1551 (list "-p"
1552 (expand-file-name
1553 ispell-current-personal-dictionary)))))
1554 (setq args (append args ispell-extra-args))
1555 (if (and ispell-really-aspell
1556 ispell-aspell-supports-utf8)
1557 (setq args
1558 (append args
1559 (list
1560 (concat "--encoding="
1561 (symbol-name
1562 encoding))))))
1563 (let ((process-coding-system-alist (list (cons "\\.*" encoding))))
1564 (setq c (apply 'ispell-call-process-region beg
1565 end
1566 ispell-program-name
1567 nil
1568 buffer
1569 nil
1570 (if ispell-really-aspell "list" "-l")
1571 args)))
1572 (if (eq c 0)
1573 (progn
1574 (flyspell-process-localwords buffer)
1575 (with-current-buffer curbuf
1576 (flyspell-delete-region-overlays beg end)
1577 (flyspell-check-region-doublons beg end))
1578 (flyspell-external-point-words))
1579 (error "Can't check region...")))))
1580
1581 ;;*---------------------------------------------------------------------*/
1582 ;;* flyspell-region ... */
1583 ;;* ------------------------------------------------------------- */
1584 ;;* Because `ispell -a' is too slow, it is not possible to use */
1585 ;;* it on large region. Then, when ispell is invoked on a large */
1586 ;;* text region, a new `ispell -l' process is spawned. The */
1587 ;;* pointed out words are then searched in the region a checked with */
1588 ;;* regular flyspell means. */
1589 ;;*---------------------------------------------------------------------*/
1590 ;;;###autoload
1591 (defun flyspell-region (beg end)
1592 "Flyspell text between BEG and END."
1593 (interactive "r")
1594 (if (= beg end)
1595 ()
1596 (save-excursion
1597 (if (> beg end)
1598 (let ((old beg))
1599 (setq beg end)
1600 (setq end old)))
1601 (if (and flyspell-large-region (> (- end beg) flyspell-large-region))
1602 (flyspell-large-region beg end)
1603 (flyspell-small-region beg end)))))
1604
1605 ;;*---------------------------------------------------------------------*/
1606 ;;* flyspell-buffer ... */
1607 ;;*---------------------------------------------------------------------*/
1608 ;;;###autoload
1609 (defun flyspell-buffer ()
1610 "Flyspell whole buffer."
1611 (interactive)
1612 (flyspell-region (point-min) (point-max)))
1613
1614 ;;*---------------------------------------------------------------------*/
1615 ;;* old next error position ... */
1616 ;;*---------------------------------------------------------------------*/
1617 (defvar flyspell-old-buffer-error nil)
1618 (defvar flyspell-old-pos-error nil)
1619
1620 ;;*---------------------------------------------------------------------*/
1621 ;;* flyspell-goto-next-error ... */
1622 ;;*---------------------------------------------------------------------*/
1623 (defun flyspell-goto-next-error ()
1624 "Go to the next previously detected error.
1625 In general FLYSPELL-GOTO-NEXT-ERROR must be used after
1626 FLYSPELL-BUFFER."
1627 (interactive)
1628 (let ((pos (point))
1629 (max (point-max)))
1630 (if (and (eq (current-buffer) flyspell-old-buffer-error)
1631 (eq pos flyspell-old-pos-error))
1632 (progn
1633 (if (= flyspell-old-pos-error max)
1634 ;; goto beginning of buffer
1635 (progn
1636 (message "Restarting from beginning of buffer")
1637 (goto-char (point-min)))
1638 (forward-word 1))
1639 (setq pos (point))))
1640 ;; seek the next error
1641 (while (and (< pos max)
1642 (let ((ovs (overlays-at pos))
1643 (r '()))
1644 (while (and (not r) (consp ovs))
1645 (if (flyspell-overlay-p (car ovs))
1646 (setq r t)
1647 (setq ovs (cdr ovs))))
1648 (not r)))
1649 (setq pos (1+ pos)))
1650 ;; save the current location for next invocation
1651 (setq flyspell-old-pos-error pos)
1652 (setq flyspell-old-buffer-error (current-buffer))
1653 (goto-char pos)
1654 (if (= pos max)
1655 (message "No more miss-spelled word!"))))
1656
1657 ;;*---------------------------------------------------------------------*/
1658 ;;* flyspell-overlay-p ... */
1659 ;;*---------------------------------------------------------------------*/
1660 (defun flyspell-overlay-p (o)
1661 "Return true if O is an overlay used by flyspell."
1662 (and (overlayp o) (overlay-get o 'flyspell-overlay)))
1663
1664 ;;*---------------------------------------------------------------------*/
1665 ;;* flyspell-delete-region-overlays, flyspell-delete-all-overlays */
1666 ;;* ------------------------------------------------------------- */
1667 ;;* Remove overlays introduced by flyspell. */
1668 ;;*---------------------------------------------------------------------*/
1669 (defun flyspell-delete-region-overlays (beg end)
1670 "Delete overlays used by flyspell in a given region."
1671 (remove-overlays beg end 'flyspell-overlay t))
1672
1673
1674 (defun flyspell-delete-all-overlays ()
1675 "Delete all the overlays used by flyspell."
1676 (remove-overlays (point-min) (point-max) 'flyspell-overlay t))
1677
1678 ;;*---------------------------------------------------------------------*/
1679 ;;* flyspell-unhighlight-at ... */
1680 ;;*---------------------------------------------------------------------*/
1681 (defun flyspell-unhighlight-at (pos)
1682 "Remove the flyspell overlay that are located at POS."
1683 (if flyspell-persistent-highlight
1684 (let ((overlays (overlays-at pos)))
1685 (while (consp overlays)
1686 (if (flyspell-overlay-p (car overlays))
1687 (delete-overlay (car overlays)))
1688 (setq overlays (cdr overlays))))
1689 (if (flyspell-overlay-p flyspell-overlay)
1690 (delete-overlay flyspell-overlay))))
1691
1692 ;;*---------------------------------------------------------------------*/
1693 ;;* flyspell-properties-at-p ... */
1694 ;;* ------------------------------------------------------------- */
1695 ;;* Is there an highlight properties at position pos? */
1696 ;;*---------------------------------------------------------------------*/
1697 (defun flyspell-properties-at-p (pos)
1698 "Return t if there is a text property at POS, not counting `local-map'.
1699 If variable `flyspell-highlight-properties' is set to nil,
1700 text with properties are not checked. This function is used to discover
1701 if the character at POS has any other property."
1702 (let ((prop (text-properties-at pos))
1703 (keep t))
1704 (while (and keep (consp prop))
1705 (if (and (eq (car prop) 'local-map) (consp (cdr prop)))
1706 (setq prop (cdr (cdr prop)))
1707 (setq keep nil)))
1708 (consp prop)))
1709
1710 ;;*---------------------------------------------------------------------*/
1711 ;;* make-flyspell-overlay ... */
1712 ;;*---------------------------------------------------------------------*/
1713 (defun make-flyspell-overlay (beg end face mouse-face)
1714 "Allocate an overlay to highlight an incorrect word.
1715 BEG and END specify the range in the buffer of that word.
1716 FACE and MOUSE-FACE specify the `face' and `mouse-face' properties
1717 for the overlay."
1718 (let ((overlay (make-overlay beg end nil t nil)))
1719 (overlay-put overlay 'face face)
1720 (overlay-put overlay 'mouse-face mouse-face)
1721 (overlay-put overlay 'flyspell-overlay t)
1722 (overlay-put overlay 'evaporate t)
1723 (overlay-put overlay 'help-echo "mouse-2: correct word at point")
1724 (overlay-put overlay 'keymap flyspell-mouse-map)
1725 (when (eq face 'flyspell-incorrect)
1726 (and (stringp flyspell-before-incorrect-word-string)
1727 (overlay-put overlay 'before-string
1728 flyspell-before-incorrect-word-string))
1729 (and (stringp flyspell-after-incorrect-word-string)
1730 (overlay-put overlay 'after-string
1731 flyspell-after-incorrect-word-string)))
1732 overlay))
1733
1734 ;;*---------------------------------------------------------------------*/
1735 ;;* flyspell-highlight-incorrect-region ... */
1736 ;;*---------------------------------------------------------------------*/
1737 (defun flyspell-highlight-incorrect-region (beg end poss)
1738 "Set up an overlay on a misspelled word, in the buffer from BEG to END.
1739 POSS is usually a list of possible spelling/correction lists,
1740 as returned by `ispell-parse-output'.
1741 It can also be the symbol `doublon', in the case where the word
1742 is itself incorrect, but suspiciously repeated."
1743 (let ((inhibit-read-only t))
1744 (unless (run-hook-with-args-until-success
1745 'flyspell-incorrect-hook beg end poss)
1746 (if (or flyspell-highlight-properties
1747 (not (flyspell-properties-at-p beg)))
1748 (progn
1749 ;; we cleanup all the overlay that are in the region, not
1750 ;; beginning at the word start position
1751 (if (< (1+ beg) end)
1752 (let ((os (overlays-in (1+ beg) end)))
1753 (while (consp os)
1754 (if (flyspell-overlay-p (car os))
1755 (delete-overlay (car os)))
1756 (setq os (cdr os)))))
1757 ;; we cleanup current overlay at the same position
1758 (flyspell-unhighlight-at beg)
1759 ;; now we can use a new overlay
1760 (setq flyspell-overlay
1761 (make-flyspell-overlay
1762 beg end
1763 (if (eq poss 'doublon) 'flyspell-duplicate 'flyspell-incorrect)
1764 'highlight)))))))
1765
1766 ;;*---------------------------------------------------------------------*/
1767 ;;* flyspell-highlight-duplicate-region ... */
1768 ;;*---------------------------------------------------------------------*/
1769 (defun flyspell-highlight-duplicate-region (beg end poss)
1770 "Set up an overlay on a duplicate misspelled word, in the buffer from BEG to END.
1771 POSS is a list of possible spelling/correction lists,
1772 as returned by `ispell-parse-output'."
1773 (let ((inhibit-read-only t))
1774 (unless (run-hook-with-args-until-success
1775 'flyspell-incorrect-hook beg end poss)
1776 (if (or flyspell-highlight-properties
1777 (not (flyspell-properties-at-p beg)))
1778 (progn
1779 ;; we cleanup current overlay at the same position
1780 (flyspell-unhighlight-at beg)
1781 ;; now we can use a new overlay
1782 (setq flyspell-overlay
1783 (make-flyspell-overlay beg end
1784 'flyspell-duplicate
1785 'highlight)))))))
1786
1787 ;;*---------------------------------------------------------------------*/
1788 ;;* flyspell-auto-correct-cache ... */
1789 ;;*---------------------------------------------------------------------*/
1790 (defvar flyspell-auto-correct-pos nil)
1791 (defvar flyspell-auto-correct-region nil)
1792 (defvar flyspell-auto-correct-ring nil)
1793 (defvar flyspell-auto-correct-word nil)
1794 (make-variable-buffer-local 'flyspell-auto-correct-pos)
1795 (make-variable-buffer-local 'flyspell-auto-correct-region)
1796 (make-variable-buffer-local 'flyspell-auto-correct-ring)
1797 (make-variable-buffer-local 'flyspell-auto-correct-word)
1798
1799 ;;*---------------------------------------------------------------------*/
1800 ;;* flyspell-check-previous-highlighted-word ... */
1801 ;;*---------------------------------------------------------------------*/
1802 (defun flyspell-check-previous-highlighted-word (&optional arg)
1803 "Correct the closer misspelled word.
1804 This function scans a mis-spelled word before the cursor. If it finds one
1805 it proposes replacement for that word. With prefix arg, count that many
1806 misspelled words backwards."
1807 (interactive)
1808 (let ((pos1 (point))
1809 (pos (point))
1810 (arg (if (or (not (numberp arg)) (< arg 1)) 1 arg))
1811 ov ovs)
1812 (if (catch 'exit
1813 (while (and (setq pos (previous-overlay-change pos))
1814 (not (= pos pos1)))
1815 (setq pos1 pos)
1816 (if (> pos (point-min))
1817 (progn
1818 (setq ovs (overlays-at (1- pos)))
1819 (while (consp ovs)
1820 (setq ov (car ovs))
1821 (setq ovs (cdr ovs))
1822 (if (and (flyspell-overlay-p ov)
1823 (= 0 (setq arg (1- arg))))
1824 (throw 'exit t)))))))
1825 (save-excursion
1826 (goto-char pos)
1827 (ispell-word))
1828 (error "No word to correct before point"))))
1829
1830 ;;*---------------------------------------------------------------------*/
1831 ;;* flyspell-display-next-corrections ... */
1832 ;;*---------------------------------------------------------------------*/
1833 (defun flyspell-display-next-corrections (corrections)
1834 (let ((string "Corrections:")
1835 (l corrections)
1836 (pos '()))
1837 (while (< (length string) 80)
1838 (if (equal (car l) flyspell-auto-correct-word)
1839 (setq pos (cons (+ 1 (length string)) pos)))
1840 (setq string (concat string " " (car l)))
1841 (setq l (cdr l)))
1842 (while (consp pos)
1843 (let ((num (car pos)))
1844 (put-text-property num
1845 (+ num (length flyspell-auto-correct-word))
1846 'face 'flyspell-incorrect
1847 string))
1848 (setq pos (cdr pos)))
1849 (if (fboundp 'display-message)
1850 (display-message 'no-log string)
1851 (message "%s" string))))
1852
1853 ;;*---------------------------------------------------------------------*/
1854 ;;* flyspell-abbrev-table ... */
1855 ;;*---------------------------------------------------------------------*/
1856 (defun flyspell-abbrev-table ()
1857 (if flyspell-use-global-abbrev-table-p
1858 global-abbrev-table
1859 (or local-abbrev-table global-abbrev-table)))
1860
1861 ;;*---------------------------------------------------------------------*/
1862 ;;* flyspell-define-abbrev ... */
1863 ;;*---------------------------------------------------------------------*/
1864 (defun flyspell-define-abbrev (name expansion)
1865 (let ((table (flyspell-abbrev-table)))
1866 (when table
1867 (define-abbrev table (downcase name) expansion))))
1868
1869 ;;*---------------------------------------------------------------------*/
1870 ;;* flyspell-auto-correct-word ... */
1871 ;;*---------------------------------------------------------------------*/
1872 (defun flyspell-auto-correct-word ()
1873 "Correct the current word.
1874 This command proposes various successive corrections for the current word."
1875 (interactive)
1876 (let ((pos (point))
1877 (old-max (point-max)))
1878 ;; use the correct dictionary
1879 (flyspell-accept-buffer-local-defs)
1880 (if (and (eq flyspell-auto-correct-pos pos)
1881 (consp flyspell-auto-correct-region))
1882 ;; we have already been using the function at the same location
1883 (let* ((start (car flyspell-auto-correct-region))
1884 (len (cdr flyspell-auto-correct-region)))
1885 (flyspell-unhighlight-at start)
1886 (delete-region start (+ start len))
1887 (setq flyspell-auto-correct-ring (cdr flyspell-auto-correct-ring))
1888 (let* ((word (car flyspell-auto-correct-ring))
1889 (len (length word)))
1890 (rplacd flyspell-auto-correct-region len)
1891 (goto-char start)
1892 (if flyspell-abbrev-p
1893 (if (flyspell-already-abbrevp (flyspell-abbrev-table)
1894 flyspell-auto-correct-word)
1895 (flyspell-change-abbrev (flyspell-abbrev-table)
1896 flyspell-auto-correct-word
1897 word)
1898 (flyspell-define-abbrev flyspell-auto-correct-word word)))
1899 (funcall flyspell-insert-function word)
1900 (flyspell-word)
1901 (flyspell-display-next-corrections flyspell-auto-correct-ring))
1902 (flyspell-ajust-cursor-point pos (point) old-max)
1903 (setq flyspell-auto-correct-pos (point)))
1904 ;; fetch the word to be checked
1905 (let ((word (flyspell-get-word nil)))
1906 (if (consp word)
1907 (let ((start (car (cdr word)))
1908 (end (car (cdr (cdr word))))
1909 (word (car word))
1910 poss ispell-filter)
1911 (setq flyspell-auto-correct-word word)
1912 ;; now check spelling of word.
1913 (ispell-send-string "%\n") ;put in verbose mode
1914 (ispell-send-string (concat "^" word "\n"))
1915 ;; wait until ispell has processed word.
1916 (while (progn
1917 (accept-process-output ispell-process)
1918 (not (string= "" (car ispell-filter)))))
1919 ;; Remove leading empty element
1920 (setq ispell-filter (cdr ispell-filter))
1921 ;; ispell process should return something after word is sent.
1922 ;; Tag word as valid (i.e., skip) otherwise
1923 (or ispell-filter
1924 (setq ispell-filter '(*)))
1925 (if (consp ispell-filter)
1926 (setq poss (ispell-parse-output (car ispell-filter))))
1927 (cond
1928 ((or (eq poss t) (stringp poss))
1929 ;; don't correct word
1930 t)
1931 ((null poss)
1932 ;; ispell error
1933 (error "Ispell: error in Ispell process"))
1934 (t
1935 ;; the word is incorrect, we have to propose a replacement
1936 (let ((replacements (if flyspell-sort-corrections
1937 (sort (car (cdr (cdr poss))) 'string<)
1938 (car (cdr (cdr poss))))))
1939 (setq flyspell-auto-correct-region nil)
1940 (if (consp replacements)
1941 (progn
1942 (let ((replace (car replacements)))
1943 (let ((new-word replace))
1944 (if (not (equal new-word (car poss)))
1945 (progn
1946 ;; the save the current replacements
1947 (setq flyspell-auto-correct-region
1948 (cons start (length new-word)))
1949 (let ((l replacements))
1950 (while (consp (cdr l))
1951 (setq l (cdr l)))
1952 (rplacd l (cons (car poss) replacements)))
1953 (setq flyspell-auto-correct-ring
1954 replacements)
1955 (flyspell-unhighlight-at start)
1956 (delete-region start end)
1957 (funcall flyspell-insert-function new-word)
1958 (if flyspell-abbrev-p
1959 (if (flyspell-already-abbrevp
1960 (flyspell-abbrev-table) word)
1961 (flyspell-change-abbrev
1962 (flyspell-abbrev-table)
1963 word
1964 new-word)
1965 (flyspell-define-abbrev word
1966 new-word)))
1967 (flyspell-word)
1968 (flyspell-display-next-corrections
1969 (cons new-word flyspell-auto-correct-ring))
1970 (flyspell-ajust-cursor-point pos
1971 (point)
1972 old-max))))))))))
1973 (setq flyspell-auto-correct-pos (point))
1974 (ispell-pdict-save t)))))))
1975
1976 ;;*---------------------------------------------------------------------*/
1977 ;;* flyspell-auto-correct-previous-pos ... */
1978 ;;*---------------------------------------------------------------------*/
1979 (defvar flyspell-auto-correct-previous-pos nil
1980 "Holds the start of the first incorrect word before point.")
1981
1982 ;;*---------------------------------------------------------------------*/
1983 ;;* flyspell-auto-correct-previous-hook ... */
1984 ;;*---------------------------------------------------------------------*/
1985 (defun flyspell-auto-correct-previous-hook ()
1986 "Hook to track successive calls to `flyspell-auto-correct-previous-word'.
1987 Sets `flyspell-auto-correct-previous-pos' to nil"
1988 (interactive)
1989 (remove-hook 'pre-command-hook (function flyspell-auto-correct-previous-hook) t)
1990 (unless (eq this-command (function flyspell-auto-correct-previous-word))
1991 (setq flyspell-auto-correct-previous-pos nil)))
1992
1993 ;;*---------------------------------------------------------------------*/
1994 ;;* flyspell-auto-correct-previous-word ... */
1995 ;;*---------------------------------------------------------------------*/
1996 (defun flyspell-auto-correct-previous-word (position)
1997 "Auto correct the first mispelled word that occurs before point.
1998 But don't look beyond what's visible on the screen."
1999 (interactive "d")
2000
2001 (let ((top (window-start))
2002 (bot (window-end)))
2003 (save-excursion
2004 (save-restriction
2005 (narrow-to-region top bot)
2006 (overlay-recenter (point))
2007
2008 (add-hook 'pre-command-hook
2009 (function flyspell-auto-correct-previous-hook) t t)
2010
2011 (unless flyspell-auto-correct-previous-pos
2012 ;; only reset if a new overlay exists
2013 (setq flyspell-auto-correct-previous-pos nil)
2014
2015 (let ((overlay-list (overlays-in (point-min) position))
2016 (new-overlay 'dummy-value))
2017
2018 ;; search for previous (new) flyspell overlay
2019 (while (and new-overlay
2020 (or (not (flyspell-overlay-p new-overlay))
2021 ;; check if its face has changed
2022 (not (eq (get-char-property
2023 (overlay-start new-overlay) 'face)
2024 'flyspell-incorrect))))
2025 (setq new-overlay (car-safe overlay-list))
2026 (setq overlay-list (cdr-safe overlay-list)))
2027
2028 ;; if nothing new exits new-overlay should be nil
2029 (if new-overlay ;; the length of the word may change so go to the start
2030 (setq flyspell-auto-correct-previous-pos
2031 (overlay-start new-overlay)))))
2032
2033 (when flyspell-auto-correct-previous-pos
2034 (save-excursion
2035 (goto-char flyspell-auto-correct-previous-pos)
2036 (let ((ispell-following-word t)) ;; point is at start
2037 (if (numberp flyspell-auto-correct-previous-pos)
2038 (goto-char flyspell-auto-correct-previous-pos))
2039 (flyspell-auto-correct-word))
2040 ;; the point may have moved so reset this
2041 (setq flyspell-auto-correct-previous-pos (point))))))))
2042
2043 ;;*---------------------------------------------------------------------*/
2044 ;;* flyspell-correct-word ... */
2045 ;;*---------------------------------------------------------------------*/
2046
2047 (defun flyspell-correct-word (event)
2048 "Pop up a menu of possible corrections for a misspelled word.
2049 The word checked is the word at the mouse position."
2050 (interactive "e")
2051 (let ((save (point)))
2052 (mouse-set-point event)
2053 (flyspell-correct-word-before-point event save)))
2054
2055 (defun flyspell-correct-word-before-point (&optional event opoint)
2056 "Pop up a menu of possible corrections for misspelled word before point.
2057 If EVENT is non-nil, it is the mouse event that invoked this operation;
2058 that controls where to put the menu.
2059 If OPOINT is non-nil, restore point there after adjusting it for replacement."
2060 (interactive)
2061 (unless (mouse-position)
2062 (error "Pop-up menus do not work on this terminal"))
2063 ;; use the correct dictionary
2064 (flyspell-accept-buffer-local-defs)
2065 (or opoint (setq opoint (point-marker)))
2066 (let ((cursor-location (point))
2067 (word (flyspell-get-word nil)))
2068 (if (consp word)
2069 (let ((start (car (cdr word)))
2070 (end (car (cdr (cdr word))))
2071 (word (car word))
2072 poss ispell-filter)
2073 ;; now check spelling of word.
2074 (ispell-send-string "%\n") ;put in verbose mode
2075 (ispell-send-string (concat "^" word "\n"))
2076 ;; wait until ispell has processed word
2077 (while (progn
2078 (accept-process-output ispell-process)
2079 (not (string= "" (car ispell-filter)))))
2080 ;; Remove leading empty element
2081 (setq ispell-filter (cdr ispell-filter))
2082 ;; ispell process should return something after word is sent.
2083 ;; Tag word as valid (i.e., skip) otherwise
2084 (or ispell-filter
2085 (setq ispell-filter '(*)))
2086 (if (consp ispell-filter)
2087 (setq poss (ispell-parse-output (car ispell-filter))))
2088 (cond
2089 ((or (eq poss t) (stringp poss))
2090 ;; don't correct word
2091 t)
2092 ((null poss)
2093 ;; ispell error
2094 (error "Ispell: error in Ispell process"))
2095 ((featurep 'xemacs)
2096 (flyspell-xemacs-popup
2097 poss word cursor-location start end opoint))
2098 (t
2099 ;; The word is incorrect, we have to propose a replacement.
2100 (flyspell-do-correct (flyspell-emacs-popup event poss word)
2101 poss word cursor-location start end opoint)))
2102 (ispell-pdict-save t)))))
2103
2104 ;;*---------------------------------------------------------------------*/
2105 ;;* flyspell-do-correct ... */
2106 ;;*---------------------------------------------------------------------*/
2107 (defun flyspell-do-correct (replace poss word cursor-location start end save)
2108 "The popup menu callback."
2109 ;; Originally, the XEmacs code didn't do the (goto-char save) here and did
2110 ;; it instead right after calling the function.
2111 (cond ((eq replace 'ignore)
2112 (goto-char save)
2113 nil)
2114 ((eq replace 'save)
2115 (goto-char save)
2116 (ispell-send-string (concat "*" word "\n"))
2117 ;; This was added only to the XEmacs side in revision 1.18 of
2118 ;; flyspell. I assume its absence on the Emacs side was an
2119 ;; oversight. --Stef
2120 (ispell-send-string "#\n")
2121 (flyspell-unhighlight-at cursor-location)
2122 (setq ispell-pdict-modified-p '(t)))
2123 ((or (eq replace 'buffer) (eq replace 'session))
2124 (ispell-send-string (concat "@" word "\n"))
2125 (flyspell-unhighlight-at cursor-location)
2126 (if (null ispell-pdict-modified-p)
2127 (setq ispell-pdict-modified-p
2128 (list ispell-pdict-modified-p)))
2129 (goto-char save)
2130 (if (eq replace 'buffer)
2131 (ispell-add-per-file-word-list word)))
2132 (replace
2133 ;; This was added only to the Emacs side. I assume its absence on
2134 ;; the XEmacs side was an oversight. --Stef
2135 (flyspell-unhighlight-at cursor-location)
2136 (let ((old-max (point-max))
2137 (new-word (if (atom replace)
2138 replace
2139 (car replace)))
2140 (cursor-location (+ (- (length word) (- end start))
2141 cursor-location)))
2142 (unless (equal new-word (car poss))
2143 (delete-region start end)
2144 (goto-char start)
2145 (funcall flyspell-insert-function new-word)
2146 (if flyspell-abbrev-p
2147 (flyspell-define-abbrev word new-word)))
2148 ;; In the original Emacs code, this was only called in the body
2149 ;; of the if. I arbitrarily kept the XEmacs behavior instead.
2150 (flyspell-ajust-cursor-point save cursor-location old-max)))
2151 (t
2152 (goto-char save)
2153 nil)))
2154
2155 ;;*---------------------------------------------------------------------*/
2156 ;;* flyspell-ajust-cursor-point ... */
2157 ;;*---------------------------------------------------------------------*/
2158 (defun flyspell-ajust-cursor-point (save cursor-location old-max)
2159 (if (>= save cursor-location)
2160 (let ((new-pos (+ save (- (point-max) old-max))))
2161 (goto-char (cond
2162 ((< new-pos (point-min))
2163 (point-min))
2164 ((> new-pos (point-max))
2165 (point-max))
2166 (t new-pos))))
2167 (goto-char save)))
2168
2169 ;;*---------------------------------------------------------------------*/
2170 ;;* flyspell-emacs-popup ... */
2171 ;;*---------------------------------------------------------------------*/
2172 (defun flyspell-emacs-popup (event poss word)
2173 "The Emacs popup menu."
2174 (unless window-system
2175 (error "This command requires pop-up dialogs"))
2176 (if (not event)
2177 (let* ((mouse-pos (mouse-position))
2178 (mouse-pos (if (nth 1 mouse-pos)
2179 mouse-pos
2180 (set-mouse-position (car mouse-pos)
2181 (/ (frame-width) 2) 2)
2182 (mouse-position))))
2183 (setq event (list (list (car (cdr mouse-pos))
2184 (1+ (cdr (cdr mouse-pos))))
2185 (car mouse-pos)))))
2186 (let* ((corrects (if flyspell-sort-corrections
2187 (sort (car (cdr (cdr poss))) 'string<)
2188 (car (cdr (cdr poss)))))
2189 (cor-menu (if (consp corrects)
2190 (mapcar (lambda (correct)
2191 (list correct correct))
2192 corrects)
2193 '()))
2194 (affix (car (cdr (cdr (cdr poss)))))
2195 show-affix-info
2196 (base-menu (let ((save (if (and (consp affix) show-affix-info)
2197 (list
2198 (list (concat "Save affix: " (car affix))
2199 'save)
2200 '("Accept (session)" session)
2201 '("Accept (buffer)" buffer))
2202 '(("Save word" save)
2203 ("Accept (session)" session)
2204 ("Accept (buffer)" buffer)))))
2205 (if (consp cor-menu)
2206 (append cor-menu (cons "" save))
2207 save)))
2208 (menu (cons "flyspell correction menu" base-menu)))
2209 (car (x-popup-menu event
2210 (list (format "%s [%s]" word (or ispell-local-dictionary
2211 ispell-dictionary))
2212 menu)))))
2213
2214 ;;*---------------------------------------------------------------------*/
2215 ;;* flyspell-xemacs-popup ... */
2216 ;;*---------------------------------------------------------------------*/
2217 (defun flyspell-xemacs-popup (poss word cursor-location start end save)
2218 "The XEmacs popup menu."
2219 (let* ((corrects (if flyspell-sort-corrections
2220 (sort (car (cdr (cdr poss))) 'string<)
2221 (car (cdr (cdr poss)))))
2222 (cor-menu (if (consp corrects)
2223 (mapcar (lambda (correct)
2224 (vector correct
2225 (list 'flyspell-do-correct
2226 correct
2227 (list 'quote poss)
2228 word
2229 cursor-location
2230 start
2231 end
2232 save)
2233 t))
2234 corrects)
2235 '()))
2236 (affix (car (cdr (cdr (cdr poss)))))
2237 show-affix-info
2238 (menu (let ((save (if (and (consp affix) show-affix-info)
2239 (vector
2240 (concat "Save affix: " (car affix))
2241 (list 'flyspell-do-correct
2242 ''save
2243 (list 'quote poss)
2244 word
2245 cursor-location
2246 start
2247 end
2248 save)
2249 t)
2250 (vector
2251 "Save word"
2252 (list 'flyspell-do-correct
2253 ''save
2254 (list 'quote poss)
2255 word
2256 cursor-location
2257 start
2258 end
2259 save)
2260 t)))
2261 (session (vector "Accept (session)"
2262 (list 'flyspell-do-correct
2263 ''session
2264 (list 'quote poss)
2265 word
2266 cursor-location
2267 start
2268 end
2269 save)
2270 t))
2271 (buffer (vector "Accept (buffer)"
2272 (list 'flyspell-do-correct
2273 ''buffer
2274 (list 'quote poss)
2275 word
2276 cursor-location
2277 start
2278 end
2279 save)
2280 t)))
2281 (if (consp cor-menu)
2282 (append cor-menu (list "-" save session buffer))
2283 (list save session buffer)))))
2284 (popup-menu (cons (format "%s [%s]" word (or ispell-local-dictionary
2285 ispell-dictionary))
2286 menu))))
2287
2288 ;;*---------------------------------------------------------------------*/
2289 ;;* Some example functions for real autocorrecting */
2290 ;;*---------------------------------------------------------------------*/
2291 (defun flyspell-maybe-correct-transposition (beg end poss)
2292 "Check replacements for transposed characters.
2293
2294 If the text between BEG and END is equal to a correction suggested by
2295 Ispell, after transposing two adjacent characters, correct the text,
2296 and return t.
2297
2298 The third arg POSS is either the symbol 'doublon' or a list of
2299 possible corrections as returned by `ispell-parse-output'.
2300
2301 This function is meant to be added to `flyspell-incorrect-hook'."
2302 (when (consp poss)
2303 (catch 'done
2304 (let ((str (buffer-substring beg end))
2305 (i 0) (len (- end beg)) tmp)
2306 (while (< (1+ i) len)
2307 (setq tmp (aref str i))
2308 (aset str i (aref str (1+ i)))
2309 (aset str (1+ i) tmp)
2310 (when (member str (nth 2 poss))
2311 (save-excursion
2312 (goto-char (+ beg i 1))
2313 (transpose-chars 1))
2314 (throw 'done t))
2315 (setq tmp (aref str i))
2316 (aset str i (aref str (1+ i)))
2317 (aset str (1+ i) tmp)
2318 (setq i (1+ i))))
2319 nil)))
2320
2321 (defun flyspell-maybe-correct-doubling (beg end poss)
2322 "Check replacements for doubled characters.
2323
2324 If the text between BEG and END is equal to a correction suggested by
2325 Ispell, after removing a pair of doubled characters, correct the text,
2326 and return t.
2327
2328 The third arg POSS is either the symbol 'doublon' or a list of
2329 possible corrections as returned by `ispell-parse-output'.
2330
2331 This function is meant to be added to `flyspell-incorrect-hook'."
2332 (when (consp poss)
2333 (catch 'done
2334 (let ((str (buffer-substring beg end))
2335 (i 0) (len (- end beg)))
2336 (while (< (1+ i) len)
2337 (when (and (= (aref str i) (aref str (1+ i)))
2338 (member (concat (substring str 0 (1+ i))
2339 (substring str (+ i 2)))
2340 (nth 2 poss)))
2341 (goto-char (+ beg i))
2342 (delete-char 1)
2343 (throw 'done t))
2344 (setq i (1+ i))))
2345 nil)))
2346
2347 ;;*---------------------------------------------------------------------*/
2348 ;;* flyspell-already-abbrevp ... */
2349 ;;*---------------------------------------------------------------------*/
2350 (defun flyspell-already-abbrevp (table word)
2351 (let ((sym (abbrev-symbol word table)))
2352 (and sym (symbolp sym))))
2353
2354 ;;*---------------------------------------------------------------------*/
2355 ;;* flyspell-change-abbrev ... */
2356 ;;*---------------------------------------------------------------------*/
2357 (defun flyspell-change-abbrev (table old new)
2358 (set (abbrev-symbol old table) new))
2359
2360 (provide 'flyspell)
2361
2362 ;; arch-tag: 05d915b9-e9cf-44fb-9137-fc28f5eaab2a
2363 ;;; flyspell.el ends here