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