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