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