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