]> code.delx.au - gnu-emacs/blob - lisp/textmodes/ispell.el
Add 2012 to FSF copyright years for Emacs files
[gnu-emacs] / lisp / textmodes / ispell.el
1 ;;; ispell.el --- interface to International Ispell Versions 3.1 and 3.2
2
3 ;; Copyright (C) 1994-1995, 1997-2012 Free Software Foundation, Inc.
4
5 ;; Author: Ken Stevens <k.stevens@ieee.org>
6 ;; Maintainer: Ken Stevens <k.stevens@ieee.org>
7 ;; Stevens Mod Date: Mon Jan 7 12:32:44 PST 2003
8 ;; Stevens Revision: 3.6
9 ;; Status : Release with 3.1.12+ and 3.2.0+ ispell.
10 ;; Bug Reports : ispell-el-bugs@itcorp.com
11 ;; Web Site : http://kdstevens.com/~stevens/ispell-page.html
12 ;; Keywords: unix wp
13
14 ;; This file is part of GNU Emacs.
15
16 ;; GNU Emacs is free software: you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation, either version 3 of the License, or
19 ;; (at your option) any later version.
20
21 ;; GNU Emacs is distributed in the hope that it will be useful,
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;; GNU General Public License for more details.
25
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28
29 ;; Note: version numbers and time stamp are not updated
30 ;; when this file is edited for release with GNU Emacs.
31
32 ;;; Commentary:
33
34 ;; INSTRUCTIONS
35
36 ;; This code contains a section of user-settable variables that you
37 ;; should inspect prior to installation. Look past the end of the history
38 ;; list. Set them up for your locale and the preferences of the majority
39 ;; of the users. Otherwise the users may need to set a number of variables
40 ;; themselves.
41 ;; You particularly may want to change the default dictionary for your
42 ;; country and language.
43 ;; Most dictionary changes should be made in this file so all users can
44 ;; enjoy them. Local or modified dictionaries are supported in your .emacs
45 ;; file. Use the variable `ispell-local-dictionary-alist' to specify
46 ;; your own dictionaries.
47
48 ;; Depending on the mail system you use, you may want to include these:
49 ;; (add-hook 'news-inews-hook 'ispell-message)
50 ;; (add-hook 'mail-send-hook 'ispell-message)
51 ;; (add-hook 'mh-before-send-letter-hook 'ispell-message)
52
53 ;; Ispell has a TeX parser and a nroff parser (the default).
54 ;; The parsing is controlled by the variable ispell-parser. Currently
55 ;; it is just a "toggle" between TeX and nroff, but if more parsers are
56 ;; added it will be updated. See the variable description for more info.
57
58
59 ;; TABLE OF CONTENTS
60
61 ;; ispell-word
62 ;; ispell-region
63 ;; ispell-buffer
64 ;; ispell-message
65 ;; ispell-comments-and-strings
66 ;; ispell-continue
67 ;; ispell-complete-word
68 ;; ispell-complete-word-interior-frag
69 ;; ispell-change-dictionary
70 ;; ispell-kill-ispell
71 ;; ispell-pdict-save
72 ;; ispell-skip-region-alist
73
74 ;; Commands in ispell-region:
75 ;; Character replacement: Replace word with choice. May query-replace.
76 ;; ` ': Accept word this time.
77 ;; `i': Accept word and insert into private dictionary.
78 ;; `a': Accept word for this session.
79 ;; `A': Accept word and place in buffer-local dictionary.
80 ;; `r': Replace word with typed-in value. Rechecked.
81 ;; `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
82 ;; `?': Show these commands
83 ;; `x': Exit spelling buffer. Move cursor to original point.
84 ;; `X': Exit spelling buffer. Leaves cursor at the current point, and permits
85 ;; the check to be completed later.
86 ;; `q': Quit spelling session (Kills ispell process).
87 ;; `l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
88 ;; `u': Like `i', but the word is lower-cased first.
89 ;; `m': Place entered value in personal dictionary, then recheck current word.
90 ;; `C-l': redraws screen
91 ;; `C-r': recursive edit
92 ;; `C-z': suspend Emacs or iconify frame
93
94 ;; Buffer-Local features:
95 ;; There are a number of buffer-local features that can be used to customize
96 ;; ispell for the current buffer. This includes language dictionaries,
97 ;; personal dictionaries, parsing, and local word spellings. Each of these
98 ;; local customizations are done either through local variables, or by
99 ;; including the keyword and argument(s) at the end of the buffer (usually
100 ;; prefixed by the comment characters). See the end of this file for
101 ;; examples. The local keywords and variables are:
102
103 ;; ispell-dictionary-keyword language-dictionary
104 ;; uses local variable ispell-local-dictionary
105 ;; ispell-pdict-keyword personal-dictionary
106 ;; uses local variable ispell-local-pdict
107 ;; ispell-parsing-keyword mode-arg extended-char-arg
108 ;; ispell-words-keyword any number of local word spellings
109
110 ;; Region skipping:
111 ;; Place new regular expression definitions of regions you prefer not to
112 ;; spell check in `ispell-skip-region-alist'. Mode-dependent features can
113 ;; be added to latex by modifying `ispell-tex-skip-alists'.
114 ;; `ispell-message' contains some custom skipping code for e-mail messages.
115
116 ;; BUGS:
117 ;; Need a way to select between different character mappings without separate
118 ;; dictionary entries.
119 ;; Multi-byte characters if not defined by current dictionary may result in the
120 ;; evil "misalignment error" in some versions of MULE Emacs.
121 ;; On some versions of Emacs, growing the minibuffer fails.
122 ;; see `ispell-help-in-bufferp'.
123 ;; Recursive edits (?C-r or ?R) inside a keyboard text replacement check (?r)
124 ;; can cause misalignment errors.
125
126 ;; HISTORY
127
128 ;; Modifications made in latest versions:
129
130 ;; Revision 3.6 2003/01/07 12:32:44 kss
131 ;; Removed extra -d LIB in dictionary defs. (Pavel Janik)
132 ;; Filtered process calls with duplicate dictionary entries.
133 ;; Fixed bug where message-text-end is inside a mime skipped region.
134 ;; Minor fixes to get ispell menus right in XEmacs
135 ;; Fixed skip regexp so it doesn't match stuff like `/.\w'.
136 ;; Detecting dictionary change not working. Fixed. kss
137 ;; function `ispell-change-dictionary' now only completes valid dicts.
138
139 ;; Revision 3.5 2001/7/11 18:43:57 kss
140 ;; Added fix for aspell to work in XEmacs (ispell-check-version).
141 ;; Added Portuguese dictionary definition.
142 ;; New feature: MIME mail message support, Fcc support.
143 ;; Bug fix: retain comment syntax on lines with region skipping. (TeX $ bug...)
144 ;; Improved allocation for graphic mode lines. (Miles Bader)
145 ;; Support -v flag for old versions of aspell. (Eli Zaretskii)
146 ;; Clear minibuffer on ^G from ispell-help (Tak Ota)
147
148 ;; Revision 3.4 2000/8/4 09:41:50 kss
149 ;; Support new color display functions.
150 ;; Fixed misalignment offset bug when replacing a string after a shift made.
151 ;; Set to standard Author/Maintainer heading,
152 ;; ensure localwords lists are separated from the text by newline. (Dave Love)
153 ;; Added dictionary definition for Italian (William Deakin)
154 ;; HTML region skipping greatly improved. (Chuck D. Phillips)
155 ;; improved menus. Fixed regexp matching http/email addresses.
156 ;; one arg always for XEmacs sleep-for (gunnar Evermann)
157 ;; support for synchronous processes (Eli Zaretskii)
158
159 ;; Revision 3.3 1999/11/29 11:38:34 kss
160 ;; Only word replacements entered in from the keyboard are rechecked.
161 ;; This fixes a bug in tex parsing and misalignment.
162 ;; Exceptions exist for recursive edit and query-replace, with tex error
163 ;; condition tested. Recursive editing improved.
164 ;; XEmacs repair for when `enable-multibyte-characters' defined - Didier Verna.
165 ;; ispell-help fixed for XEmacs. Choices minibuffer now displayed in XEmacs.
166 ;; Only list valid dictionaries in Spell menu. Russian dictionary doesn't allow
167 ;; run-together words, and uses koi8-r font. Don't skip text in html <TT>
168 ;; fonts.
169
170 ;; Revision 3.2 1999/5/7 14:25:14 kss
171 ;; Accept ispell versions 3.X.Y where X>=1
172 ;; fine tuned latex region skipping. Fixed bug in ispell-word that did not
173 ;; point in right place on words < 2 chars. Simplified ispell-minor-mode.
174 ;; Fixed bug in TeX parsing when math commands are in the comments.
175 ;; Removed calls to `when' macro.
176
177 ;; Revision 3.1 1998/12/1 13:21:52 kss
178 ;; Improved and fixed customize support.
179 ;; Improved and fixed comments in variables and messages.
180 ;; A coding system is now required for all languages.
181 ;; casechars improved for castellano, castellano8, and norsk dictionaries.
182 ;; Dictionary norsk7-tex removed. Dictionary polish added.
183 ;; Dictionaries redefined at load-time to support dictionary changes.
184 ;; Menu redefined at load time to support dictionary changes.
185 ;; ispell-check-version added as an alias for `check-ispell-version'.
186 ;; Spelling suggestions returned in order generated by ispell.
187 ;; Small bug fixed in matching ispell error messages.
188 ;; Robustness added to ensure `case-fold-search' doesn't get redefined.
189 ;; Fixed bug that didn't respect case of word in `ispell-complete-word'.
190 ;; Multibyte character coding support added for process interactions.
191 ;; Ensure ispell process has terminated before starting new process.
192 ;; This can otherwise confuse process filters and hang ispell.
193 ;; Improved skipping support for SGML.
194 ;; Fixed bug using ^M rather than \r in `ispell-minor-check'.
195 ;; Improved message reference matching in `ispell-message'.
196 ;; Fixed bug in returning to nroff mode from tex mode.
197
198 ;;; Compatibility code for XEmacs and (not too) older emacsen:
199
200 (eval-and-compile ;; Protect against declare-function undefined in XEmacs
201 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
202
203 (declare-function ispell-check-minver "ispell" (v1 v2))
204 (declare-function ispell-looking-back "ispell"
205 (regexp &optional limit &rest ignored))
206
207 (if (fboundp 'version<=)
208 (defalias 'ispell-check-minver 'version<=)
209 (defun ispell-check-minver (minver version)
210 "Check if string VERSION is at least string MINVER.
211 Both must be in [0-9]+.[0-9]+... format. This is a fallback
212 compatibility function in case `version<=' is not available."
213 (let ((pending t)
214 (return t)
215 start-ver start-mver)
216 ;; Loop until an absolute greater or smaller condition is reached
217 ;; or until no elements are left in any of version and minver. In
218 ;; this case version is exactly the minimal, so return OK.
219 (while pending
220 (let (ver mver)
221 (if (string-match "[0-9]+" version start-ver)
222 (setq start-ver (match-end 0)
223 ver (string-to-number (match-string 0 version))))
224 (if (string-match "[0-9]+" minver start-mver)
225 (setq start-mver (match-end 0)
226 mver (string-to-number (match-string 0 minver))))
227
228 (if (or ver mver)
229 (progn
230 (or ver (setq ver 0))
231 (or mver (setq mver 0))
232 ;; If none of below conditions match, this element is the
233 ;; same. Go checking next element.
234 (if (> ver mver)
235 (setq pending nil)
236 (if (< ver mver)
237 (setq pending nil
238 return nil))))
239 (setq pending nil))))
240 return)))
241
242 ;; XEmacs does not have looking-back
243 (if (fboundp 'looking-back)
244 (defalias 'ispell-looking-back 'looking-back)
245 (defun ispell-looking-back (regexp &optional limit &rest ignored)
246 "Return non-nil if text before point matches regular expression REGEXP.
247 Like `looking-at' except matches before point, and is slower.
248 LIMIT if non-nil speeds up the search by specifying a minimum
249 starting position, to avoid checking matches that would start
250 before LIMIT.
251
252 This is a stripped down compatibility function for use when
253 full featured `looking-back' function is missing."
254 (save-excursion
255 (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t))))
256
257 ;;; Code:
258
259 (defvar mail-yank-prefix)
260
261 (defgroup ispell nil
262 "User variables for Emacs ispell interface."
263 :group 'applications)
264
265 (if (not (fboundp 'buffer-substring-no-properties))
266 (defun buffer-substring-no-properties (start end)
267 (buffer-substring start end)))
268
269 (defalias 'check-ispell-version 'ispell-check-version)
270
271 ;;; **********************************************************************
272 ;;; The following variables should be set according to personal preference
273 ;;; and location of binaries:
274 ;;; **********************************************************************
275
276
277 ;;; ******* THIS FILE IS WRITTEN FOR ISPELL VERSION 3.1+
278
279 (defcustom ispell-highlight-p 'block
280 "*Highlight spelling errors when non-nil.
281 When set to `block', assumes a block cursor with TTY displays."
282 :type '(choice (const block) (const :tag "off" nil) (const :tag "on" t))
283 :group 'ispell)
284
285 (defcustom ispell-lazy-highlight (boundp 'lazy-highlight-cleanup)
286 "*Controls the lazy-highlighting of spelling errors.
287 When non-nil, all text in the buffer matching the current spelling
288 error is highlighted lazily using isearch lazy highlighting (see
289 `lazy-highlight-initial-delay' and `lazy-highlight-interval')."
290 :type 'boolean
291 :group 'lazy-highlight
292 :group 'ispell
293 :version "22.1")
294
295 (defcustom ispell-highlight-face (if ispell-lazy-highlight 'isearch 'highlight)
296 "*The face used for Ispell highlighting. For Emacsen with overlays.
297 Possible values are `highlight', `modeline', `secondary-selection',
298 `region', and `underline'.
299 This variable can be set by the user to whatever face they desire.
300 It's most convenient if the cursor color and highlight color are
301 slightly different."
302 :type 'face
303 :group 'ispell)
304
305 (defcustom ispell-check-comments t
306 "*Spelling of comments checked when non-nil.
307 When set to `exclusive', ONLY comments are checked. (For code comments).
308 Warning! Not checking comments, when a comment start is embedded in strings,
309 may produce undesired results."
310 :type '(choice (const exclusive) (const :tag "off" nil) (const :tag "on" t))
311 :group 'ispell)
312 ;;;###autoload
313 (put 'ispell-check-comments 'safe-local-variable
314 (lambda (a) (memq a '(nil t exclusive))))
315
316 (defcustom ispell-query-replace-choices nil
317 "*Corrections made throughout region when non-nil.
318 Uses `query-replace' (\\[query-replace]) for corrections."
319 :type 'boolean
320 :group 'ispell)
321
322 (defcustom ispell-skip-tib nil
323 "*Does not spell check `tib' bibliography references when non-nil.
324 Skips any text between strings matching regular expressions
325 `ispell-tib-ref-beginning' and `ispell-tib-ref-end'.
326
327 TeX users beware: Any field starting with [. will skip until a .] -- even
328 your whole buffer -- unless you set `ispell-skip-tib' to nil. That includes
329 a [.5mm] type of number...."
330 :type 'boolean
331 :group 'ispell)
332
333 (defvar ispell-tib-ref-beginning "[[<]\\."
334 "Regexp matching the beginning of a Tib reference.")
335
336 (defvar ispell-tib-ref-end "\\.[]>]"
337 "Regexp matching the end of a Tib reference.")
338
339 (defcustom ispell-keep-choices-win t
340 "*When non-nil, the `*Choices*' window remains for spelling session.
341 This minimizes redisplay thrashing."
342 :type 'boolean
343 :group 'ispell)
344
345 (defcustom ispell-choices-win-default-height 2
346 "*The default size of the `*Choices*' window, including mode line.
347 Must be greater than 1."
348 :type 'integer
349 :group 'ispell)
350
351 (defcustom ispell-program-name
352 (or (locate-file "aspell" exec-path exec-suffixes 'file-executable-p)
353 (locate-file "ispell" exec-path exec-suffixes 'file-executable-p)
354 (locate-file "hunspell" exec-path exec-suffixes 'file-executable-p)
355 "ispell")
356 "Program invoked by \\[ispell-word] and \\[ispell-region] commands."
357 :type 'string
358 :group 'ispell)
359
360 (defcustom ispell-alternate-dictionary
361 (cond ((file-readable-p "/usr/dict/web2") "/usr/dict/web2")
362 ((file-readable-p "/usr/share/dict/web2") "/usr/share/dict/web2")
363 ((file-readable-p "/usr/dict/words") "/usr/dict/words")
364 ((file-readable-p "/usr/lib/dict/words") "/usr/lib/dict/words")
365 ((file-readable-p "/usr/share/dict/words") "/usr/share/dict/words")
366 ((file-readable-p "/usr/share/lib/dict/words")
367 "/usr/share/lib/dict/words")
368 ((file-readable-p "/sys/dict") "/sys/dict"))
369 "*Alternate plain word-list dictionary for spelling help."
370 :type '(choice file (const :tag "None" nil))
371 :group 'ispell)
372
373 (defcustom ispell-complete-word-dict nil
374 "*Plain word-list dictionary used for word completion if
375 different from `ispell-alternate-dictionary'."
376 :type '(choice file (const :tag "None" nil))
377 :group 'ispell)
378
379 (defcustom ispell-message-dictionary-alist nil
380 "*List used by `ispell-message' to select a new dictionary.
381 It consists of pairs (REGEXP . DICTIONARY). If REGEXP is found
382 in the message headers, `ispell-local-dictionary' will be set to
383 DICTIONARY if `ispell-local-dictionary' is not buffer-local.
384 E.g. you may use the following value:
385 '((\"^Newsgroups:[ \\t]*de\\\\.\" . \"deutsch8\")
386 (\"^To:[^\\n,]+\\\\.de[ \\t\\n,>]\" . \"deutsch8\"))"
387 :type '(repeat (cons regexp string))
388 :group 'ispell)
389
390
391 (defcustom ispell-message-fcc-skip 50000
392 "*Query before saving Fcc message copy if attachment larger than this value.
393 Always stores Fcc copy of message when nil."
394 :type '(choice integer (const :tag "off" nil))
395 :group 'ispell)
396
397
398 (defcustom ispell-grep-command
399 ;; MS-Windows/MS-DOS have `egrep' as a Unix shell script, so they
400 ;; cannot invoke it. Use "grep -E" instead (see ispell-grep-options
401 ;; below).
402 (if (memq system-type '(windows-nt ms-dos)) "grep" "egrep")
403 "Name of the grep command for search processes."
404 :type 'string
405 :group 'ispell)
406
407 (defcustom ispell-grep-options
408 (if (memq system-type '(windows-nt ms-dos)) "-Ei" "-i")
409 "String of options to use when running the program in `ispell-grep-command'.
410 Should probably be \"-i\" or \"-e\".
411 Some machines (like the NeXT) don't support \"-i\"."
412 :type 'string
413 :group 'ispell)
414
415 (defcustom ispell-look-command
416 (cond ((file-exists-p "/bin/look") "/bin/look")
417 ((file-exists-p "/usr/local/bin/look") "/usr/local/bin/look")
418 ((file-exists-p "/usr/bin/look") "/usr/bin/look")
419 (t "look"))
420 "Name of the look command for search processes.
421 This must be an absolute file name."
422 :type 'file
423 :group 'ispell)
424
425 (defcustom ispell-look-p (file-exists-p ispell-look-command)
426 "*Non-nil means use `look' rather than `grep'.
427 Default is based on whether `look' seems to be available."
428 :type 'boolean
429 :group 'ispell)
430
431 (defcustom ispell-have-new-look nil
432 "*Non-nil means use the `-r' option (regexp) when running `look'."
433 :type 'boolean
434 :group 'ispell)
435
436 (defcustom ispell-look-options (if ispell-have-new-look "-dfr" "-df")
437 "String of command options for `ispell-look-command'."
438 :type 'string
439 :group 'ispell)
440
441 (defcustom ispell-use-ptys-p nil
442 "When non-nil, Emacs uses ptys to communicate with Ispell.
443 When nil, Emacs uses pipes."
444 :type 'boolean
445 :group 'ispell)
446
447 (defcustom ispell-following-word nil
448 "*Non-nil means `ispell-word' checks the word around or after point.
449 Otherwise `ispell-word' checks the preceding word."
450 :type 'boolean
451 :group 'ispell)
452
453 (defcustom ispell-help-in-bufferp nil
454 "*Non-nil means display interactive keymap help in a buffer.
455 The following values are supported:
456 nil Expand the minibuffer and display a short help message
457 there for a couple of seconds.
458 t Pop up a new buffer and display a short help message there
459 for a couple of seconds.
460 electric Pop up a new buffer and display a long help message there.
461 User can browse and then exit the help mode."
462 :type '(choice (const electric) (const :tag "off" nil) (const :tag "on" t))
463 :group 'ispell)
464
465 (defcustom ispell-quietly nil
466 "*Non-nil means suppress messages in `ispell-word'."
467 :type 'boolean
468 :group 'ispell)
469
470 (defcustom ispell-format-word-function (function upcase)
471 "*Formatting function for displaying word being spell checked.
472 The function must take one string argument and return a string."
473 :type 'function
474 :group 'ispell)
475 (defvaralias 'ispell-format-word 'ispell-format-word-function)
476
477 (defcustom ispell-use-framepop-p nil
478 "When non-nil ispell uses framepop to display choices in a dedicated frame.
479 You can set this variable to dynamically use framepop if you are in a
480 window system by evaluating the following on startup to set this variable:
481 (and window-system (condition-case () (require 'framepop) (error nil)))"
482 :type 'boolean
483 :group 'ispell)
484
485 ;;;###autoload
486 (defcustom ispell-personal-dictionary nil
487 "*File name of your personal spelling dictionary, or nil.
488 If nil, the default personal dictionary, (\"~/.ispell_DICTNAME\" for ispell or
489 \"~/.aspell.LANG.pws\" for aspell) is used, where DICTNAME is the name of your
490 default dictionary and LANG the two letter language code."
491 :type '(choice file
492 (const :tag "default" nil))
493 :group 'ispell)
494
495 (defcustom ispell-silently-savep nil
496 "*When non-nil, save the personal dictionary without confirmation."
497 :type 'boolean
498 :group 'ispell)
499
500 (defvar ispell-local-dictionary-overridden nil
501 "Non-nil means the user has explicitly set this buffer's Ispell dictionary.")
502 (make-variable-buffer-local 'ispell-local-dictionary-overridden)
503
504 (defcustom ispell-local-dictionary nil
505 "If non-nil, the dictionary to be used for Ispell commands in this buffer.
506 The value must be a string dictionary name,
507 or nil, which means use the global setting in `ispell-dictionary'.
508 Dictionary names are defined in `ispell-local-dictionary-alist'
509 and `ispell-dictionary-alist'.
510
511 Setting `ispell-local-dictionary' to a value has the same effect as
512 calling \\[ispell-change-dictionary] with that value. This variable
513 is automatically set when defined in the file with either
514 `ispell-dictionary-keyword' or the Local Variable syntax."
515 :type '(choice string
516 (const :tag "default" nil))
517 :group 'ispell)
518 ;;;###autoload
519 (put 'ispell-local-dictionary 'safe-local-variable 'string-or-null-p)
520
521 (make-variable-buffer-local 'ispell-local-dictionary)
522
523 (defcustom ispell-dictionary nil
524 "Default dictionary to use if `ispell-local-dictionary' is nil."
525 :type '(choice string
526 (const :tag "default" nil))
527 :group 'ispell)
528
529 (defcustom ispell-extra-args nil
530 "*If non-nil, a list of extra switches to pass to the Ispell program.
531 For example, (\"-W\" \"3\") to cause it to accept all 1-3 character
532 words as correct. See also `ispell-dictionary-alist', which may be used
533 for language-specific arguments."
534 :type '(repeat string)
535 :group 'ispell)
536
537
538
539 (defcustom ispell-skip-html 'use-mode-name
540 "*Indicates whether ispell should skip spell checking of SGML markup.
541 If t, always skip SGML markup; if nil, never skip; if non-t and non-nil,
542 guess whether SGML markup should be skipped according to the name of the
543 buffer's major mode."
544 :type '(choice (const :tag "always" t) (const :tag "never" nil)
545 (const :tag "use-mode-name" use-mode-name))
546 :group 'ispell)
547
548 (make-variable-buffer-local 'ispell-skip-html)
549
550
551 (defcustom ispell-local-dictionary-alist nil
552 "*List of local or customized dictionary definitions.
553 These can override the values in `ispell-dictionary-alist'.
554
555 To make permanent changes to your dictionary definitions, you
556 will need to make your changes in this variable, save, and then
557 re-start Emacs."
558 :type '(repeat (list (choice :tag "Dictionary"
559 (string :tag "Dictionary name")
560 (const :tag "default" nil))
561 (regexp :tag "Case characters")
562 (regexp :tag "Non case characters")
563 (regexp :tag "Other characters")
564 (boolean :tag "Many other characters")
565 (repeat :tag "Ispell command line args"
566 (string :tag "Arg"))
567 (choice :tag "Extended character mode"
568 (const "~tex") (const "~plaintex")
569 (const "~nroff") (const "~list")
570 (const "~latin1") (const "~latin3")
571 (const :tag "default" nil))
572 (coding-system :tag "Coding System")))
573 :group 'ispell)
574
575
576 (defvar ispell-dictionary-base-alist
577 '((nil
578 ;; The default dictionary. It may be English.aff, or any other
579 ;; dictionary depending on locale and such things. We should probably
580 ;; ask ispell what dictionary it's using, but until we do that, let's
581 ;; just use an approximate regexp.
582 "[[:alpha:]]" "[^[:alpha:]]" "[']" nil ("-B") nil iso-8859-1)
583 ("american" ; Yankee English
584 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1)
585 ("brasileiro" ; Brazilian mode
586 "[A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]"
587 "[^A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]"
588 "[']" nil nil nil iso-8859-1)
589 ("british" ; British version
590 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1)
591 ("castellano" ; Spanish mode
592 "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]"
593 "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]"
594 "[-]" nil ("-B") "~tex" iso-8859-1)
595 ("castellano8" ; 8 bit Spanish mode
596 "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]"
597 "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]"
598 "[-]" nil ("-B" "-d" "castellano") "~latin1" iso-8859-1)
599 ("czech"
600 "[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]"
601 "[^A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]"
602 "" nil ("-B") nil iso-8859-2)
603 ("dansk" ; Dansk.aff
604 "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]"
605 "[']" nil ("-C") nil iso-8859-1)
606 ("deutsch" ; Deutsch.aff
607 "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1)
608 ("deutsch8"
609 "[a-zA-Z\304\326\334\344\366\337\374]"
610 "[^a-zA-Z\304\326\334\344\366\337\374]"
611 "[']" t ("-C" "-d" "deutsch") "~latin1" iso-8859-1)
612 ("english" ; make English explicitly selectable
613 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1)
614 ("esperanto"
615 "[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]"
616 "[^A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]"
617 "[-']" t ("-C") "~latin3" iso-8859-3)
618 ("esperanto-tex"
619 "[A-Za-z^\\]" "[^A-Za-z^\\]"
620 "[-'`\"]" t ("-C" "-d" "esperanto") "~tex" iso-8859-3)
621 ("finnish"
622 "[A-Za-z\345\344\366\305\304\326]"
623 "[^A-Za-z\345\344\366\305\304\326]"
624 "[:]" nil ("-C") "~list" iso-8859-1)
625 ("francais7"
626 "[A-Za-z]" "[^A-Za-z]" "[`'^-]" t nil nil iso-8859-1)
627 ("francais" ; Francais.aff
628 "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]"
629 "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]"
630 "[-'.@]" t nil "~list" iso-8859-1)
631 ("francais-tex" ; Francais.aff
632 "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]"
633 "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]"
634 "[-'^`\".@]" t nil "~tex" iso-8859-1)
635 ("german" ; german.aff
636 "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1)
637 ("german8" ; german.aff
638 "[a-zA-Z\304\326\334\344\366\337\374]"
639 "[^a-zA-Z\304\326\334\344\366\337\374]"
640 "[']" t ("-C" "-d" "german") "~latin1" iso-8859-1)
641 ("italiano" ; Italian.aff
642 "[A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]"
643 "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]"
644 "[-.]" nil ("-B" "-d" "italian") "~tex" iso-8859-1)
645 ("nederlands" ; Nederlands.aff
646 "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]"
647 "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]"
648 "[']" t ("-C") nil iso-8859-1)
649 ("nederlands8" ; Dutch8.aff
650 "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]"
651 "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]"
652 "[']" t ("-C") nil iso-8859-1)
653 ("norsk" ; 8 bit Norwegian mode
654 "[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]"
655 "[^A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]"
656 "[\"]" nil nil "~list" iso-8859-1)
657 ("norsk7-tex" ; 7 bit Norwegian TeX mode
658 "[A-Za-z{}\\'^`]" "[^A-Za-z{}\\'^`]"
659 "[\"]" nil ("-d" "norsk") "~plaintex" iso-8859-1)
660 ("polish" ; Polish mode
661 "[A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]"
662 "[^A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]"
663 "[.]" nil nil nil iso-8859-2)
664 ("portugues" ; Portuguese mode
665 "[a-zA-Z\301\302\307\311\323\340\341\342\351\352\355\363\343\347\372]"
666 "[^a-zA-Z\301\302\307\311\323\340\341\342\351\352\355\363\343\347\372]"
667 "[']" t ("-C") "~latin1" iso-8859-1)
668 ("russian" ; Russian.aff (KOI8-R charset)
669 "[\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]"
670 "[^\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]"
671 "" nil nil nil koi8-r)
672 ("russianw" ; russianw.aff (CP1251 charset)
673 "[\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]"
674 "[^\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]"
675 "" nil nil nil windows-1251)
676 ("slovak" ; Slovakian
677 "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]"
678 "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]"
679 "" nil ("-B") nil iso-8859-2)
680 ("slovenian" ; Slovenian
681 "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]"
682 "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]"
683 "" nil ("-B" "-d" "slovenian") nil iso-8859-2)
684 ("svenska" ; Swedish mode
685 "[A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]"
686 "[^A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]"
687 "[']" nil ("-C") "~list" iso-8859-1))
688 "Base value for `ispell-dictionary-alist'.")
689
690 (defvar ispell-dictionary-alist nil
691 "An alist of dictionaries and their associated parameters.
692
693 Each element of this list is also a list:
694
695 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
696 ISPELL-ARGS EXTENDED-CHARACTER-MODE CHARACTER-SET\)
697
698 DICTIONARY-NAME is a possible string value of variable `ispell-dictionary',
699 nil means the default dictionary.
700
701 CASECHARS is a regular expression of valid characters that comprise a word.
702
703 NOT-CASECHARS is the opposite regexp of CASECHARS.
704
705 OTHERCHARS is a regexp of characters in the NOT-CASECHARS set but which can be
706 used to construct words in some special way. If OTHERCHARS characters follow
707 and precede characters from CASECHARS, they are parsed as part of a word,
708 otherwise they become word-breaks. As an example in English, assume the
709 regular expression \"[']\" for OTHERCHARS. Then \"they're\" and
710 \"Steven's\" are parsed as single words including the \"'\" character, but
711 \"Stevens'\" does not include the quote character as part of the word.
712 If you want OTHERCHARS to be empty, use the empty string.
713 Hint: regexp syntax requires the hyphen to be declared first here.
714
715 CASECHARS, NOT-CASECHARS, and OTHERCHARS must be unibyte strings
716 containing bytes of CHARACTER-SET. In addition, if they contain
717 a non-ASCII byte, the regular expression must be a single
718 `character set' construct that doesn't specify a character range
719 for non-ASCII bytes.
720
721 MANY-OTHERCHARS-P is non-nil when multiple OTHERCHARS are allowed in a word.
722 Otherwise only a single OTHERCHARS character is allowed to be part of any
723 single word.
724
725 ISPELL-ARGS is a list of additional arguments passed to the ispell
726 subprocess.
727
728 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
729 have been configured in an Ispell affix file. (For example, umlauts
730 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
731 in English. This has the same effect as the command-line `-T' option.
732 The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
733 but the dictionary can control the extended character mode.
734 Both defaults can be overruled in a buffer-local fashion. See
735 `ispell-parsing-keyword' for details on this.
736
737 CHARACTER-SET used for languages with multibyte characters.
738
739 Note that the CASECHARS and OTHERCHARS slots of the alist should
740 contain the same character set as casechars and otherchars in the
741 LANGUAGE.aff file \(e.g., english.aff\).")
742
743 (defvar ispell-really-aspell nil) ; Non-nil if we can use aspell extensions.
744 (defvar ispell-really-hunspell nil) ; Non-nil if we can use hunspell extensions.
745 (defvar ispell-encoding8-command nil
746 "Command line option prefix to select UTF-8 if supported, nil otherwise.
747 If UTF-8 if supported by spellchecker and is selectable from the command line
748 this variable will contain \"--encoding=\" for aspell and \"-i \" for hunspell,
749 so UTF-8 or other mime charsets can be selected. That will be set for hunspell
750 >=1.1.6 or aspell >= 0.60 in `ispell-check-version'.
751
752 For aspell non-nil means to try to automatically find aspell dictionaries.
753 Earlier aspell versions do not consistently support UTF-8. Handling
754 this would require some extra guessing in `ispell-aspell-find-dictionary'.")
755
756 (defvar ispell-aspell-supports-utf8 nil
757 "Non nil if aspell has consistent command line UTF-8 support. Obsolete.
758 ispell.el and flyspell.el will use for this purpose the more generic
759 variable `ispell-encoding8-command' for both aspell and hunspell. Is left
760 here just for backwards compatibility.")
761
762 (make-obsolete-variable 'ispell-aspell-supports-utf8
763 'ispell-encoding8-command "23.1")
764
765
766 ;;; **********************************************************************
767 ;;; The following are used by ispell, and should not be changed.
768 ;;; **********************************************************************
769
770
771
772 ;; The version must be 3.1 or greater for this version of ispell.el
773 ;; There is an incompatibility between version 3.1.12 and lower versions.
774 (defconst ispell-required-version '(3 1 12)
775 "Ispell versions with which this version of ispell.el is known to work.")
776 (defvar ispell-offset -1
777 "Offset that maps protocol differences between ispell 3.1 versions.")
778
779 (defconst ispell-version "ispell.el 3.6 - 7-Jan-2003")
780
781
782 (defun ispell-check-version (&optional interactivep)
783 "Ensure that `ispell-program-name' is valid and the correct version.
784 Returns version number if called interactively.
785 Otherwise returns the library directory name, if that is defined."
786 ;; This is a little wasteful as we actually launch ispell twice: once
787 ;; to make sure it's the right version, and once for real. But people
788 ;; get confused by version mismatches *all* the time (and I've got the
789 ;; email to prove it) so I think this is worthwhile. And the -v[ersion]
790 ;; option is the only way I can think of to do this that works with
791 ;; all versions, since versions earlier than 3.0.09 didn't identify
792 ;; themselves on startup.
793 (interactive "p")
794 (let ((default-directory (or (and (boundp 'temporary-file-directory)
795 temporary-file-directory)
796 default-directory))
797 result status ispell-program-version)
798
799 (with-temp-buffer
800 (setq status (ispell-call-process
801 ispell-program-name nil t nil
802 ;; aspell doesn't accept the -vv switch.
803 (let ((case-fold-search
804 (memq system-type '(ms-dos windows-nt)))
805 (speller
806 (file-name-nondirectory ispell-program-name)))
807 ;; Assume anything that isn't `aspell' is Ispell.
808 (if (string-match "\\`aspell" speller) "-v" "-vv"))))
809 (goto-char (point-min))
810 (if interactivep
811 ;; report version information of ispell and ispell.el
812 (progn
813 (end-of-line)
814 (setq result (concat (buffer-substring-no-properties (point-min)
815 (point))
816 ", "
817 ispell-version))
818 (message "%s" result))
819 ;; return library directory.
820 (if (re-search-forward "LIBDIR = \\\"\\([^ \t\n]*\\)\\\"" nil t)
821 (setq result (match-string 1))))
822 (goto-char (point-min))
823 (if (not (memq status '(0 nil)))
824 (error "%s exited with %s %s" ispell-program-name
825 (if (stringp status) "signal" "code") status))
826
827 ;; Get relevant version strings. Only xx.yy.... format works well
828 (let (case-fold-search)
829 (setq ispell-program-version
830 (and (search-forward-regexp "\\([0-9]+\\.[0-9\\.]+\\)" nil t)
831 (match-string 1)))
832
833 ;; Make sure these variables are (re-)initialized to the default value
834 (setq ispell-really-aspell nil
835 ispell-aspell-supports-utf8 nil
836 ispell-really-hunspell nil
837 ispell-encoding8-command nil)
838
839 (goto-char (point-min))
840 (or (setq ispell-really-aspell
841 (and (search-forward-regexp
842 "(but really Aspell \\([0-9]+\\.[0-9\\.-]+\\)?)" nil t)
843 (match-string 1)))
844 (setq ispell-really-hunspell
845 (and (search-forward-regexp
846 "(but really Hunspell \\([0-9]+\\.[0-9\\.-]+\\)?)"
847 nil t)
848 (match-string 1)))))
849
850 (let ((aspell-minver "0.50")
851 (aspell8-minver "0.60")
852 (ispell0-minver "3.1.0")
853 (ispell-minver "3.1.12")
854 (hunspell8-minver "1.1.6"))
855
856 (if (ispell-check-minver ispell0-minver ispell-program-version)
857 (or (ispell-check-minver ispell-minver ispell-program-version)
858 (setq ispell-offset 0))
859 (error "%s release %s or greater is required"
860 ispell-program-name
861 ispell-minver))
862
863 (cond
864 (ispell-really-aspell
865 (if (ispell-check-minver aspell-minver ispell-really-aspell)
866 (if (ispell-check-minver aspell8-minver ispell-really-aspell)
867 (progn
868 (setq ispell-aspell-supports-utf8 t)
869 (setq ispell-encoding8-command "--encoding=")))
870 (setq ispell-really-aspell nil)))
871 (ispell-really-hunspell
872 (if (ispell-check-minver hunspell8-minver ispell-really-hunspell)
873 (setq ispell-encoding8-command "-i ")
874 (setq ispell-really-hunspell nil))))))
875 result))
876
877 (defun ispell-call-process (&rest args)
878 "Like `call-process' but defend against bad `default-directory'."
879 (let ((default-directory default-directory))
880 (unless (and (file-directory-p default-directory)
881 (file-readable-p default-directory))
882 (setq default-directory (expand-file-name "~/")))
883 (apply 'call-process args)))
884
885 (defun ispell-call-process-region (&rest args)
886 "Like `call-process-region' but defend against bad `default-directory'."
887 (let ((default-directory default-directory))
888 (unless (and (file-directory-p default-directory)
889 (file-readable-p default-directory))
890 (setq default-directory (expand-file-name "~/")))
891 (apply 'call-process-region args)))
892
893
894
895 ;; The preparation of the menu bar menu must be autoloaded
896 ;; because otherwise this file gets autoloaded every time Emacs starts
897 ;; so that it can set up the menus and determine keyboard equivalents.
898
899 ;;;###autoload
900 (defvar ispell-menu-map nil "Key map for ispell menu.")
901 ;;; redo menu when loading ispell to get dictionary modifications
902 (setq ispell-menu-map nil)
903
904 ;;;###autoload
905 (defvar ispell-menu-xemacs nil
906 "Spelling menu for XEmacs.
907 If nil when package is loaded, a standard menu will be set,
908 and added as a submenu of the \"Edit\" menu.")
909
910 ;; Break out XEmacs menu and split into several calls to avoid having
911 ;; long lines in loaddefs.el. Detect need off following constant.
912
913 ;;; Set up dictionary
914 ;;;###autoload
915 (defvar ispell-menu-map-needed
916 ;; only needed when not version 18 and not XEmacs.
917 (and (not ispell-menu-map)
918 (not (featurep 'xemacs))
919 'reload))
920
921 (defvar ispell-library-directory (condition-case ()
922 (ispell-check-version)
923 (error nil))
924 "Directory where ispell dictionaries reside.")
925
926 (defvar ispell-process nil
927 "The process object for Ispell.")
928
929 (defvar ispell-async-processp (and (fboundp 'delete-process)
930 (fboundp 'process-send-string)
931 (fboundp 'accept-process-output)
932 ;;(fboundp 'start-process)
933 ;;(fboundp 'set-process-filter)
934 ;;(fboundp 'process-kill-without-query)
935 )
936 "Non-nil means that the OS supports asynchronous processes.")
937
938 ;; Make ispell.el work better with aspell.
939
940 (defvar ispell-aspell-dictionary-alist nil
941 "An alist of parsed aspell dicts and associated parameters.
942 Internal use.")
943
944 (defun ispell-find-aspell-dictionaries ()
945 "Find Aspell's dictionaries, and record in `ispell-dictionary-alist'."
946 (unless (and ispell-really-aspell ispell-encoding8-command)
947 (error "This function only works with aspell >= 0.60"))
948 (let* ((dictionaries
949 (split-string
950 (with-temp-buffer
951 (ispell-call-process ispell-program-name nil t nil "dicts")
952 (buffer-string))))
953 ;; Search for the named dictionaries.
954 (found
955 (delq nil
956 (mapcar #'ispell-aspell-find-dictionary dictionaries))))
957 ;; Ensure aspell's alias dictionary will override standard
958 ;; definitions.
959 (setq found (ispell-aspell-add-aliases found))
960 ;; Merge into FOUND any elements from the standard ispell-dictionary-alist
961 ;; which have no element in FOUND at all.
962 (dolist (dict ispell-dictionary-alist)
963 (unless (assoc (car dict) found)
964 (setq found (nconc found (list dict)))))
965 (setq ispell-aspell-dictionary-alist found)
966 ;; Add a default entry
967 (let ((default-dict
968 '(nil "[[:alpha:]]" "[^[:alpha:]]" "[']" nil ("-B") nil utf-8)))
969 (push default-dict ispell-aspell-dictionary-alist))))
970
971 (defvar ispell-aspell-data-dir nil
972 "Data directory of Aspell.")
973
974 (defvar ispell-aspell-dict-dir nil
975 "Dictionary directory of Aspell.")
976
977 (defun ispell-get-aspell-config-value (key)
978 "Return value of Aspell configuration option KEY.
979 Assumes that value contains no whitespace."
980 (with-temp-buffer
981 (ispell-call-process ispell-program-name nil t nil "config" key)
982 (car (split-string (buffer-string)))))
983
984 (defun ispell-aspell-find-dictionary (dict-name)
985 "For aspell dictionary DICT-NAME, return a list of parameters if an
986 associated data file is found or nil otherwise. List format is
987 that of `ispell-dictionary-base-alist' elements."
988 ;; Make sure `ispell-aspell-data-dir' is defined
989 (or ispell-aspell-data-dir
990 (setq ispell-aspell-data-dir
991 (ispell-get-aspell-config-value "data-dir")))
992 ;; Try finding associated datafile
993 (let* ((datafile1
994 (concat ispell-aspell-data-dir "/"
995 ;; Strip out variant, country code, etc.
996 (and (string-match "^[[:alpha:]]+" dict-name)
997 (match-string 0 dict-name)) ".dat"))
998 (datafile2
999 (concat ispell-aspell-data-dir "/"
1000 ;; Strip out anything but xx_YY.
1001 (and (string-match "^[[:alpha:]_]+" dict-name)
1002 (match-string 0 dict-name)) ".dat"))
1003 (data-file
1004 (if (file-readable-p datafile1)
1005 datafile1
1006 (if (file-readable-p datafile2)
1007 datafile2)))
1008 otherchars)
1009
1010 (if data-file
1011 (with-temp-buffer
1012 (insert-file-contents data-file)
1013 ;; There is zero or one line with special characters declarations.
1014 (when (search-forward-regexp "^special" nil t)
1015 (let ((specials (split-string
1016 (buffer-substring (point)
1017 (progn (end-of-line) (point))))))
1018 ;; The line looks like: special ' -** - -** . -** : -*-
1019 ;; -** means that this character
1020 ;; - doesn't appear at word start
1021 ;; * may appear in the middle of a word
1022 ;; * may appear at word end
1023 ;; `otherchars' is about the middle case.
1024 (while specials
1025 (when (eq (aref (cadr specials) 1) ?*)
1026 (push (car specials) otherchars))
1027 (setq specials (cddr specials)))))
1028 (list dict-name
1029 "[[:alpha:]]"
1030 "[^[:alpha:]]"
1031 (regexp-opt otherchars)
1032 t ; We can't tell, so set this to t
1033 (list "-d" dict-name)
1034 nil ; aspell doesn't support this
1035 ;; Here we specify the encoding to use while communicating with
1036 ;; aspell. This doesn't apply to command line arguments, so
1037 ;; just don't pass words to spellcheck as arguments...
1038 'utf-8)))))
1039
1040 (defun ispell-aspell-add-aliases (alist)
1041 "Find aspell's dictionary aliases and add them to dictionary ALIST.
1042 Return the new dictionary alist."
1043 (let ((aliases
1044 (file-expand-wildcards
1045 (concat (or ispell-aspell-dict-dir
1046 (setq ispell-aspell-dict-dir
1047 (ispell-get-aspell-config-value "dict-dir")))
1048 "/*.alias"))))
1049 (dolist (alias-file aliases)
1050 (with-temp-buffer
1051 (insert-file-contents alias-file)
1052 ;; Look for a line "add FOO.multi", extract FOO
1053 (when (search-forward-regexp "^add \\([^.]+\\)\\.multi" nil t)
1054 (let* ((aliasname (file-name-sans-extension
1055 (file-name-nondirectory alias-file)))
1056 (already-exists-p (assoc aliasname alist))
1057 (realname (match-string 1))
1058 (realdict (assoc realname alist)))
1059 (when (and realdict (not already-exists-p))
1060 (push (cons aliasname (cdr realdict)) alist))))))
1061 alist))
1062
1063 ;; Set params according to the selected spellchecker
1064
1065 (defvar ispell-last-program-name nil
1066 "Last value of `ispell-program-name'. Internal use.")
1067
1068 (defvar ispell-initialize-spellchecker-hook nil
1069 "Normal hook run on spellchecker initialization.
1070 This hook is run when a spellchecker is used for the first
1071 time, before `ispell-dictionary-alist' is set. It is intended for
1072 sysadmins to override entries in `ispell-dictionary-base-alist'
1073 by putting those overrides in `ispell-base-dicts-override-alist', which is
1074 a dynamically scoped var with same format as `ispell-dictionary-alist'.
1075 This alist will not override the auto-detected values (e.g. if a recent
1076 aspell is used along with Emacs).")
1077
1078 (defun ispell-set-spellchecker-params ()
1079 "Initialize some spellchecker parameters when changed or first used."
1080 (unless (eq ispell-last-program-name ispell-program-name)
1081 (setq ispell-last-program-name ispell-program-name)
1082 (ispell-kill-ispell t)
1083 (if (and (condition-case ()
1084 (progn
1085 (setq ispell-library-directory (ispell-check-version))
1086 t)
1087 (error nil))
1088 ispell-really-aspell
1089 ispell-encoding8-command
1090 ;; XEmacs does not like [:alpha:] regexps.
1091 (string-match "^[[:alpha:]]+$" "abcde"))
1092 (unless ispell-aspell-dictionary-alist
1093 (ispell-find-aspell-dictionaries)))
1094
1095 ;; Substitute ispell-dictionary-alist with the list of dictionaries
1096 ;; corresponding to the given spellchecker. If a recent aspell, use
1097 ;; the list of really installed dictionaries and add to it elements
1098 ;; of the original list that are not present there. Allow distro info.
1099 (let ((found-dicts-alist
1100 (if (and ispell-really-aspell
1101 ispell-encoding8-command)
1102 ispell-aspell-dictionary-alist
1103 nil))
1104 ispell-base-dicts-override-alist ; Override only base-dicts-alist
1105 all-dicts-alist)
1106
1107 (run-hooks 'ispell-initialize-spellchecker-hook)
1108
1109 ;; Add dicts to ``ispell-dictionary-alist'' unless already present.
1110 (dolist (dict (append found-dicts-alist
1111 ispell-base-dicts-override-alist
1112 ispell-dictionary-base-alist))
1113 (unless (assoc (car dict) all-dicts-alist)
1114 (add-to-list 'all-dicts-alist dict)))
1115 (setq ispell-dictionary-alist all-dicts-alist))))
1116
1117
1118 (defun ispell-valid-dictionary-list ()
1119 "Return a list of valid dictionaries.
1120 The variable `ispell-library-directory' defines the library location."
1121 ;; Initialize variables and dictionaries alists for desired spellchecker.
1122 ;; Make sure ispell.el is loaded to avoid some autoload loops in XEmacs
1123 ;; (and may be others)
1124 (if (featurep 'ispell)
1125 (ispell-set-spellchecker-params))
1126
1127 (let ((dicts (append ispell-local-dictionary-alist ispell-dictionary-alist))
1128 (dict-list (cons "default" nil))
1129 name dict-bname)
1130 (dolist (dict dicts)
1131 (setq name (car dict)
1132 dict-bname (or (car (cdr (member "-d" (nth 5 dict))))
1133 name))
1134 ;; Include if the dictionary is in the library, or dir not defined.
1135 (if (and
1136 name
1137 ;; For Aspell, we already know which dictionaries exist.
1138 (or ispell-really-aspell
1139 ;; Include all dictionaries if lib directory not known.
1140 ;; Same for Hunspell, where ispell-library-directory is nil.
1141 (not ispell-library-directory)
1142 (file-exists-p (concat ispell-library-directory
1143 "/" dict-bname ".hash"))
1144 (file-exists-p (concat ispell-library-directory
1145 "/" dict-bname ".has"))))
1146 (push name dict-list)))
1147 dict-list))
1148
1149 ;;; define commands in menu in opposite order you want them to appear.
1150 ;;;###autoload
1151 (if ispell-menu-map-needed
1152 (progn
1153 (setq ispell-menu-map (make-sparse-keymap "Spell"))
1154 (define-key ispell-menu-map [ispell-change-dictionary]
1155 `(menu-item ,(purecopy "Change Dictionary...") ispell-change-dictionary
1156 :help ,(purecopy "Supply explicit dictionary file name")))
1157 (define-key ispell-menu-map [ispell-kill-ispell]
1158 `(menu-item ,(purecopy "Kill Process") ispell-kill-ispell
1159 :enable (and (boundp 'ispell-process) ispell-process
1160 (eq (ispell-process-status) 'run))
1161 :help ,(purecopy "Terminate Ispell subprocess")))
1162 (define-key ispell-menu-map [ispell-pdict-save]
1163 `(menu-item ,(purecopy "Save Dictionary")
1164 (lambda () (interactive) (ispell-pdict-save t t))
1165 :help ,(purecopy "Save personal dictionary")))
1166 (define-key ispell-menu-map [ispell-customize]
1167 `(menu-item ,(purecopy "Customize...")
1168 (lambda () (interactive) (customize-group 'ispell))
1169 :help ,(purecopy "Customize spell checking options")))
1170 (define-key ispell-menu-map [ispell-help]
1171 ;; use (x-popup-menu last-nonmenu-event(list "" ispell-help-list)) ?
1172 `(menu-item ,(purecopy "Help")
1173 (lambda () (interactive) (describe-function 'ispell-help))
1174 :help ,(purecopy "Show standard Ispell keybindings and commands")))
1175 (define-key ispell-menu-map [flyspell-mode]
1176 `(menu-item ,(purecopy "Automatic spell checking (Flyspell)")
1177 flyspell-mode
1178 :help ,(purecopy "Check spelling while you edit the text")
1179 :button (:toggle . (bound-and-true-p flyspell-mode))))
1180 (define-key ispell-menu-map [ispell-complete-word]
1181 `(menu-item ,(purecopy "Complete Word") ispell-complete-word
1182 :help ,(purecopy "Complete word at cursor using dictionary")))
1183 (define-key ispell-menu-map [ispell-complete-word-interior-frag]
1184 `(menu-item ,(purecopy "Complete Word Fragment")
1185 ispell-complete-word-interior-frag
1186 :help ,(purecopy "Complete word fragment at cursor")))))
1187
1188 ;;;###autoload
1189 (if ispell-menu-map-needed
1190 (progn
1191 (define-key ispell-menu-map [ispell-continue]
1192 `(menu-item ,(purecopy "Continue Spell-Checking") ispell-continue
1193 :enable (and (boundp 'ispell-region-end)
1194 (marker-position ispell-region-end)
1195 (equal (marker-buffer ispell-region-end)
1196 (current-buffer)))
1197 :help ,(purecopy "Continue spell checking last region")))
1198 (define-key ispell-menu-map [ispell-word]
1199 `(menu-item ,(purecopy "Spell-Check Word") ispell-word
1200 :help ,(purecopy "Spell-check word at cursor")))
1201 (define-key ispell-menu-map [ispell-comments-and-strings]
1202 `(menu-item ,(purecopy "Spell-Check Comments")
1203 ispell-comments-and-strings
1204 :help ,(purecopy "Spell-check only comments and strings")))))
1205
1206 ;;;###autoload
1207 (if ispell-menu-map-needed
1208 (progn
1209 (define-key ispell-menu-map [ispell-region]
1210 `(menu-item ,(purecopy "Spell-Check Region") ispell-region
1211 :enable mark-active
1212 :help ,(purecopy "Spell-check text in marked region")))
1213 (define-key ispell-menu-map [ispell-message]
1214 `(menu-item ,(purecopy "Spell-Check Message") ispell-message
1215 :visible (eq major-mode 'mail-mode)
1216 :help ,(purecopy "Skip headers and included message text")))
1217 (define-key ispell-menu-map [ispell-buffer]
1218 `(menu-item ,(purecopy "Spell-Check Buffer") ispell-buffer
1219 :help ,(purecopy "Check spelling of selected buffer")))
1220 ;;(put 'ispell-region 'menu-enable 'mark-active)
1221 (fset 'ispell-menu-map (symbol-value 'ispell-menu-map))))
1222
1223 ;;; XEmacs versions 19 & 20
1224 (if (and (featurep 'xemacs)
1225 (featurep 'menubar)
1226 ;;(null ispell-menu-xemacs)
1227 (not (and (boundp 'infodock-version) infodock-version)))
1228 (let ((dicts (if (fboundp 'ispell-valid-dictionary-list)
1229 (reverse (ispell-valid-dictionary-list))))
1230 (current-menubar (or current-menubar default-menubar))
1231 (menu
1232 '(["Help" (describe-function 'ispell-help) t]
1233 ;;["Help" (popup-menu ispell-help-list) t]
1234 ["Check Message" ispell-message t]
1235 ["Check Buffer" ispell-buffer t]
1236 ["Check Comments" ispell-comments-and-strings t]
1237 ["Check Word" ispell-word t]
1238 ["Check Region" ispell-region (or (not zmacs-regions) (mark))]
1239 ["Continue Check" ispell-continue t]
1240 ["Complete Word Frag"ispell-complete-word-interior-frag t]
1241 ["Complete Word" ispell-complete-word t]
1242 ["Kill Process" ispell-kill-ispell t]
1243 ["Customize..." (customize-group 'ispell) t]
1244 ;; flyspell-mode may not be bound...
1245 ;;["flyspell" flyspell-mode
1246 ;; :style toggle :selected flyspell-mode ]
1247 "-"
1248 ["Save Personal Dict"(ispell-pdict-save t t) t]
1249 ["Change Dictionary" ispell-change-dictionary t])))
1250 (if (null dicts)
1251 (setq dicts (cons "default" nil)))
1252 (dolist (name dicts)
1253 (setq menu (append menu
1254 (list
1255 (vector
1256 (concat "Select " (capitalize name))
1257 (list 'ispell-change-dictionary name)
1258 t)))))
1259 (setq ispell-menu-xemacs menu)
1260 (if current-menubar
1261 (progn
1262 (if (car (find-menu-item current-menubar '("Cmds")))
1263 (progn
1264 ;; XEmacs 21.2
1265 (delete-menu-item '("Cmds" "Spell-Check"))
1266 (add-menu '("Cmds") "Spell-Check" ispell-menu-xemacs))
1267 ;; previous
1268 (delete-menu-item '("Edit" "Spell")) ; in case already defined
1269 (add-menu '("Edit") "Spell" ispell-menu-xemacs))))))
1270
1271 (defalias 'ispell-int-char
1272 ;; Allow incrementing characters as integers in XEmacs 20
1273 (if (and (featurep 'xemacs)
1274 (fboundp 'int-char))
1275 'int-char
1276 ;; Emacs and XEmacs 19 or earlier
1277 'identity))
1278
1279
1280 ;;; **********************************************************************
1281
1282 (defvar ispell-current-dictionary nil
1283 "The name of the current dictionary, or nil for the default.
1284 This is passed to the ispell process using the `-d' switch and is
1285 used as key in `ispell-local-dictionary-alist' and `ispell-dictionary-alist'.")
1286
1287 (defvar ispell-current-personal-dictionary nil
1288 "The name of the current personal dictionary, or nil for the default.
1289 This is passed to the ispell process using the `-p' switch.")
1290
1291 (defun ispell-decode-string (str)
1292 "Decodes multibyte character strings.
1293 Protects against bogus binding of `enable-multibyte-characters' in XEmacs."
1294 ;; FIXME: enable-multibyte-characters is read-only, so bogus bindings are
1295 ;; really nasty (they signal an error in Emacs): Who does that? --Stef
1296 (if (and (or (featurep 'xemacs)
1297 (and (boundp 'enable-multibyte-characters)
1298 enable-multibyte-characters))
1299 (fboundp 'decode-coding-string)
1300 (ispell-get-coding-system))
1301 (decode-coding-string str (ispell-get-coding-system))
1302 str))
1303
1304 ;; Return a string decoded from Nth element of the current dictionary.
1305 (defun ispell-get-decoded-string (n)
1306 "Get the decoded string in slot N of the descriptor of the current dict."
1307 (let* ((slot (or
1308 (assoc ispell-current-dictionary ispell-local-dictionary-alist)
1309 (assoc ispell-current-dictionary ispell-dictionary-alist)
1310 (error "No match for the current dictionary")))
1311 (str (nth n slot)))
1312 (when (and (> (length str) 0)
1313 (not (multibyte-string-p str)))
1314 (setq str (ispell-decode-string str))
1315 (or (multibyte-string-p str)
1316 (setq str (string-to-multibyte str))))
1317 str))
1318
1319 (defun ispell-get-casechars ()
1320 (ispell-get-decoded-string 1))
1321 (defun ispell-get-not-casechars ()
1322 (ispell-get-decoded-string 2))
1323 (defun ispell-get-otherchars ()
1324 (ispell-get-decoded-string 3))
1325 (defun ispell-get-many-otherchars-p ()
1326 (nth 4 (or (assoc ispell-current-dictionary ispell-local-dictionary-alist)
1327 (assoc ispell-current-dictionary ispell-dictionary-alist))))
1328 (defun ispell-get-ispell-args ()
1329 (nth 5 (or (assoc ispell-current-dictionary ispell-local-dictionary-alist)
1330 (assoc ispell-current-dictionary ispell-dictionary-alist))))
1331 (defun ispell-get-extended-character-mode ()
1332 (nth 6 (or (assoc ispell-current-dictionary ispell-local-dictionary-alist)
1333 (assoc ispell-current-dictionary ispell-dictionary-alist))))
1334 (defun ispell-get-coding-system ()
1335 (nth 7 (or (assoc ispell-current-dictionary ispell-local-dictionary-alist)
1336 (assoc ispell-current-dictionary ispell-dictionary-alist))))
1337
1338
1339 (defvar ispell-pdict-modified-p nil
1340 "Non-nil means personal dictionary has modifications to be saved.")
1341
1342 ;;; If you want to save the dictionary when quitting, must do so explicitly.
1343 ;;; When non-nil, the spell session is terminated.
1344 ;;; When numeric, contains cursor location in buffer, and cursor remains there.
1345 (defvar ispell-quit nil)
1346
1347 (defvar ispell-process-directory nil
1348 "The directory where `ispell-process' was started.")
1349
1350 (defvar ispell-filter nil
1351 "Output filter from piped calls to Ispell.")
1352
1353 (defvar ispell-filter-continue nil
1354 "Control variable for Ispell filter function.")
1355
1356 (defvar ispell-output-buffer nil
1357 "Buffer used for reading output of a synchronous Ispell subprocess.")
1358
1359 (defvar ispell-session-buffer nil
1360 "Buffer used for passing input to a synchronous Ispell subprocess.")
1361
1362 (defvar ispell-cmd-args nil
1363 "Command-line arguments to pass to a synchronous Ispell subprocess.")
1364
1365 (defvar ispell-query-replace-marker (make-marker)
1366 "Marker for `query-replace' processing.")
1367
1368 (defvar ispell-recursive-edit-marker (make-marker)
1369 "Marker for return point from recursive edit.")
1370
1371 (defvar ispell-checking-message nil
1372 "Non-nil when we're checking a mail message.
1373 Set to the MIME boundary locations when checking messages.")
1374
1375 (defconst ispell-choices-buffer "*Choices*")
1376
1377 (defvar ispell-overlay nil "Overlay variable for Ispell highlighting.")
1378
1379 ;;; *** Buffer Local Definitions ***
1380
1381 (defconst ispell-words-keyword "LocalWords: "
1382 "The keyword for local oddly-spelled words to accept.
1383 The keyword will be followed by any number of local word spellings.
1384 There can be multiple of these keywords in the file.")
1385
1386 (defconst ispell-dictionary-keyword "Local IspellDict: "
1387 "The keyword for a local dictionary to use.
1388 The keyword must be followed by a valid dictionary name, defined in
1389 `ispell-local-dictionary-alist' or `ispell-dictionary-alist'.
1390 When multiple occurrences exist, the last keyword
1391 definition is used.")
1392
1393 (defconst ispell-pdict-keyword "Local IspellPersDict: "
1394 "The keyword for defining buffer local dictionaries.
1395 Keyword must be followed by the filename of a personal dictionary.
1396 The last occurring definition in the buffer will be used.")
1397
1398 (defconst ispell-parsing-keyword "Local IspellParsing: "
1399 "The keyword for overriding default Ispell parsing.
1400 The above keyword string should be followed by `latex-mode' or
1401 `nroff-mode' to put the current buffer into the desired parsing mode.
1402
1403 Extended character mode can be changed for this buffer by placing
1404 a `~' followed by an extended-character mode -- such as `~.tex'.
1405 The last occurring definition in the buffer will be used.")
1406
1407 ;;;###autoload
1408 (defvar ispell-skip-region-alist
1409 `((ispell-words-keyword forward-line)
1410 (ispell-dictionary-keyword forward-line)
1411 (ispell-pdict-keyword forward-line)
1412 (ispell-parsing-keyword forward-line)
1413 (,(purecopy "^---*BEGIN PGP [A-Z ]*--*")
1414 . ,(purecopy "^---*END PGP [A-Z ]*--*"))
1415 ;; assume multiline uuencoded file? "\nM.*$"?
1416 (,(purecopy "^begin [0-9][0-9][0-9] [^ \t]+$") . ,(purecopy "\nend\n"))
1417 (,(purecopy "^%!PS-Adobe-[123].0") . ,(purecopy "\n%%EOF\n"))
1418 (,(purecopy "^---* \\(Start of \\)?[Ff]orwarded [Mm]essage")
1419 . ,(purecopy "^---* End of [Ff]orwarded [Mm]essage"))
1420 ;; Matches e-mail addresses, file names, http addresses, etc. The
1421 ;; `-+' `_+' patterns are necessary for performance reasons when
1422 ;; `-' or `_' part of word syntax.
1423 (,(purecopy "\\(--+\\|_+\\|\\(/\\w\\|\\(\\(\\w\\|[-_]\\)+[.:@]\\)\\)\\(\\w\\|[-_]\\)*\\([.:/@]+\\(\\w\\|[-_~=?&]\\)+\\)+\\)"))
1424 ;; above checks /.\w sequences
1425 ;;("\\(--+\\|\\(/\\|\\(\\(\\w\\|[-_]\\)+[.:@]\\)\\)\\(\\w\\|[-_]\\)*\\([.:/@]+\\(\\w\\|[-_~=?&]\\)+\\)+\\)")
1426 ;; This is a pretty complex regexp. It can be simplified to the following:
1427 ;; "\\(\\w\\|[-_]\\)*\\([.:/@]+\\(\\w\\|[-_]\\|~\\)+\\)+"
1428 ;; but some valid text will be skipped, e.g. "his/her". This could be
1429 ;; fixed up (at the expense of a moderately more complex regexp)
1430 ;; by not allowing "/" to be the character which triggers the
1431 ;; identification of the computer name, e.g.:
1432 ;; "\\(\\w\\|[-_]\\)+[.:@]\\(\\w\\|[-_]\\)*\\([.:/@]+\\(\\w\\|[-_]\\|~\\)+\\)+"
1433 )
1434 "Alist expressing beginning and end of regions not to spell check.
1435 The alist key must be a regular expression.
1436 Valid forms include:
1437 (KEY) - just skip the key.
1438 (KEY . REGEXP) - skip to the end of REGEXP. REGEXP may be string or symbol.
1439 (KEY REGEXP) - skip to end of REGEXP. REGEXP must be a string.
1440 (KEY FUNCTION ARGS) - FUNCTION called with ARGS returns end of region.")
1441 (put 'ispell-skip-region-alist 'risky-local-variable t)
1442
1443
1444 ;;;###autoload
1445 (defvar ispell-tex-skip-alists
1446 (purecopy
1447 '((;;("%\\[" . "%\\]") ; AMStex block comment...
1448 ;; All the standard LaTeX keywords from L. Lamport's guide:
1449 ;; \cite, \hspace, \hspace*, \hyphenation, \include, \includeonly, \input,
1450 ;; \label, \nocite, \rule (in ispell - rest included here)
1451 ("\\\\addcontentsline" ispell-tex-arg-end 2)
1452 ("\\\\add\\(tocontents\\|vspace\\)" ispell-tex-arg-end)
1453 ("\\\\\\([aA]lph\\|arabic\\)" ispell-tex-arg-end)
1454 ;;("\\\\author" ispell-tex-arg-end)
1455 ("\\\\bibliographystyle" ispell-tex-arg-end)
1456 ("\\\\makebox" ispell-tex-arg-end 0)
1457 ("\\\\e?psfig" ispell-tex-arg-end)
1458 ("\\\\document\\(class\\|style\\)" .
1459 "\\\\begin[ \t\n]*{[ \t\n]*document[ \t\n]*}"))
1460 (;; delimited with \begin. In ispell: displaymath, eqnarray, eqnarray*,
1461 ;; equation, minipage, picture, tabular, tabular* (ispell)
1462 ("\\(figure\\|table\\)\\*?" ispell-tex-arg-end 0)
1463 ("list" ispell-tex-arg-end 2)
1464 ("program" . "\\\\end[ \t\n]*{[ \t\n]*program[ \t\n]*}")
1465 ("verbatim\\*?" . "\\\\end[ \t\n]*{[ \t\n]*verbatim\\*?[ \t\n]*}"))))
1466 "*Lists of regions to be skipped in TeX mode.
1467 First list is used raw.
1468 Second list has key placed inside \\begin{}.
1469
1470 Delete or add any regions you want to be automatically selected
1471 for skipping in latex mode.")
1472 (put 'ispell-tex-skip-alist 'risky-local-variable t)
1473
1474
1475 ;;;###autoload
1476 (defconst ispell-html-skip-alists
1477 '(("<[cC][oO][dD][eE]\\>[^>]*>" "</[cC][oO][dD][eE]*>")
1478 ("<[sS][cC][rR][iI][pP][tT]\\>[^>]*>" "</[sS][cC][rR][iI][pP][tT]>")
1479 ("<[aA][pP][pP][lL][eE][tT]\\>[^>]*>" "</[aA][pP][pP][lL][eE][tT]>")
1480 ("<[vV][eE][rR][bB]\\>[^>]*>" "<[vV][eE][rR][bB]\\>[^>]*>")
1481 ;;("<[tT][tT]\\>[^>]*>" "<[tT][tT]\\>[^>]*>")
1482 ("<[tT][tT]/" "/")
1483 ("<[^ \t\n>]" ">")
1484 ("&[^ \t\n;]" "[; \t\n]"))
1485 "*Lists of start and end keys to skip in HTML buffers.
1486 Same format as `ispell-skip-region-alist'.
1487 Note - substrings of other matches must come last
1488 (e.g. \"<[tT][tT]/\" and \"<[^ \\t\\n>]\").")
1489 (put 'ispell-html-skip-alists 'risky-local-variable t)
1490
1491 (defvar ispell-local-pdict ispell-personal-dictionary
1492 "A buffer local variable containing the current personal dictionary.
1493 If non-nil, the value must be a string, which is a file name.
1494
1495 If you specify a personal dictionary for the current buffer which is
1496 different from the current personal dictionary, the effect is similar
1497 to calling \\[ispell-change-dictionary]. This variable is automatically
1498 set when defined in the file with either `ispell-pdict-keyword' or the
1499 local variable syntax.")
1500
1501 (make-variable-buffer-local 'ispell-local-pdict)
1502 ;;;###autoload(put 'ispell-local-pdict 'safe-local-variable 'stringp)
1503
1504 (defvar ispell-buffer-local-name nil
1505 "Contains the buffer name if local word definitions were used.
1506 Ispell is then restarted because the local words could conflict.")
1507
1508 (defvar ispell-parser 'use-mode-name
1509 "*Indicates whether ispell should parse the current buffer as TeX Code.
1510 Special value `use-mode-name' tries to guess using the name of `major-mode'.
1511 Default parser is `nroff'.
1512 Currently the only other valid parser is `tex'.
1513
1514 You can set this variable in hooks in your init file -- eg:
1515
1516 \(add-hook 'tex-mode-hook (lambda () (setq ispell-parser 'tex)))")
1517
1518 (defvar ispell-region-end (make-marker)
1519 "Marker that allows spelling continuations.")
1520
1521 (defvar ispell-check-only nil
1522 "If non-nil, `ispell-word' does not try to correct the word.")
1523
1524
1525 ;;; **********************************************************************
1526 ;;; **********************************************************************
1527
1528
1529
1530 ;;;###autoload (define-key esc-map "$" 'ispell-word)
1531
1532
1533 (defun ispell-accept-output (&optional timeout-secs timeout-msecs)
1534 "Wait for output from ispell process, or TIMEOUT-SECS and TIMEOUT-MSECS.
1535 If asynchronous subprocesses are not supported, call `ispell-filter' and
1536 pass it the output of the last ispell invocation."
1537 (if ispell-async-processp
1538 (accept-process-output ispell-process timeout-secs timeout-msecs)
1539 (if (null ispell-process)
1540 (error "No Ispell process to read output from!")
1541 (let ((buf ispell-output-buffer)
1542 ispell-output)
1543 (if (not (bufferp buf))
1544 (setq ispell-filter nil)
1545 (with-current-buffer buf
1546 (setq ispell-output (buffer-substring-no-properties
1547 (point-min) (point-max))))
1548 (ispell-filter t ispell-output)
1549 (with-current-buffer buf
1550 (erase-buffer)))))))
1551
1552 (defun ispell-send-replacement (misspelled replacement)
1553 "Notify aspell that MISSPELLED should be spelled REPLACEMENT.
1554 This allows it to improve the suggestion list based on actual misspellings."
1555 (and ispell-really-aspell
1556 (ispell-send-string (concat "$$ra " misspelled "," replacement "\n"))))
1557
1558
1559 (defun ispell-send-string (string)
1560 "Send the string STRING to the Ispell process."
1561 (if ispell-async-processp
1562 (process-send-string ispell-process string)
1563 ;; Asynchronous subprocesses aren't supported on this losing system.
1564 ;; We keep all the directives passed to Ispell during the entire
1565 ;; session in a buffer, and pass them anew each time we invoke
1566 ;; Ispell to process another chunk of text. (Yes, I know this is a
1567 ;; terrible kludge, and it's a bit slow, but it does get the work done.)
1568 (let ((cmd (aref string 0))
1569 ;; The following commands are not passed to Ispell until
1570 ;; we have a *real* reason to invoke it.
1571 (cmds-to-defer '(?* ?@ ?~ ?+ ?- ?! ?%))
1572 (session-buf ispell-session-buffer)
1573 (output-buf ispell-output-buffer)
1574 (ispell-args ispell-cmd-args)
1575 (defdir ispell-process-directory)
1576 prev-pos)
1577 (with-current-buffer session-buf
1578 (setq prev-pos (point))
1579 (setq default-directory defdir)
1580 (insert string)
1581 (if (not (memq cmd cmds-to-defer))
1582 (let (coding-system-for-read coding-system-for-write status)
1583 (if (and (boundp 'enable-multibyte-characters)
1584 enable-multibyte-characters)
1585 (setq coding-system-for-read (ispell-get-coding-system)
1586 coding-system-for-write (ispell-get-coding-system)))
1587 (set-buffer output-buf)
1588 (erase-buffer)
1589 (set-buffer session-buf)
1590 (setq status
1591 (apply 'ispell-call-process-region
1592 (point-min) (point-max)
1593 ispell-program-name nil
1594 output-buf nil
1595 "-a"
1596 ;; hunspell -m option means something different
1597 (if ispell-really-hunspell "" "-m")
1598 ispell-args))
1599 (set-buffer output-buf)
1600 (goto-char (point-min))
1601 (save-match-data
1602 (if (not (looking-at "@(#) "))
1603 (error "Ispell error: %s"
1604 (buffer-substring-no-properties
1605 (point) (progn (end-of-line) (point)))))
1606 ;; If STRING is "^Z\n", we just started Ispell and need
1607 ;; to retain its version ID line in the output buffer.
1608 ;; Otherwise, remove the ID line, as it will confuse
1609 ;; `ispell-filter'.
1610 (or (string= string "\032\n")
1611 (progn
1612 (forward-line)
1613 (delete-region (point-min) (point))))
1614 ;; If STRING begins with ^ or any normal character, we need
1615 ;; to remove the last line from the session buffer, since it
1616 ;; was just spell-checked, and we don't want to check it again.
1617 ;; The same goes for the # command, since Ispell already saved
1618 ;; the personal dictionary.
1619 (set-buffer session-buf)
1620 (delete-region prev-pos (point))
1621 ;; Ispell run synchronously saves the personal dictionary
1622 ;; after each successful command. So we can remove any
1623 ;; lines in the session buffer that insert words into the
1624 ;; dictionary.
1625 (if (memq status '(0 nil))
1626 (let ((more-lines t))
1627 (goto-char (point-min))
1628 (while more-lines
1629 (if (looking-at "^\\*")
1630 (let ((start (point)))
1631 (forward-line)
1632 (delete-region start (point)))
1633 (setq more-lines (= 0 (forward-line))))))))))))))
1634
1635
1636 ;; Insert WORD while possibly translating characters by
1637 ;; translation-table-for-input.
1638 (defun ispell-insert-word (word)
1639 (let ((pos (point)))
1640 (insert word)
1641 ;; Avoid "obsolete" warnings for translation-table-for-input.
1642 (with-no-warnings
1643 (if (char-table-p translation-table-for-input)
1644 (translate-region pos (point) translation-table-for-input)))))
1645
1646 ;;;###autoload
1647 (defun ispell-word (&optional following quietly continue region)
1648 "Check spelling of word under or before the cursor.
1649 If the word is not found in dictionary, display possible corrections
1650 in a window allowing you to choose one.
1651
1652 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
1653 is non-nil when called interactively, then the following word
1654 \(rather than preceding\) is checked when the cursor is not over a word.
1655 When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
1656 when called interactively, non-corrective messages are suppressed.
1657
1658 With a prefix argument (or if CONTINUE is non-nil),
1659 resume interrupted spell-checking of a buffer or region.
1660
1661 Interactively, in Transient Mark mode when the mark is active, call
1662 `ispell-region' to check the active region for spelling errors.
1663
1664 Word syntax is controlled by the definition of the chosen dictionary,
1665 which is in `ispell-local-dictionary-alist' or `ispell-dictionary-alist'.
1666
1667 This will check or reload the dictionary. Use \\[ispell-change-dictionary]
1668 or \\[ispell-region] to update the Ispell process.
1669
1670 Return values:
1671 nil word is correct or spelling is accepted.
1672 0 word is inserted into buffer-local definitions.
1673 \"word\" word corrected from word list.
1674 \(\"word\" arg\) word is hand entered.
1675 quit spell session exited."
1676 (interactive (list ispell-following-word ispell-quietly current-prefix-arg t))
1677 (cond
1678 ((and region (use-region-p))
1679 (ispell-region (region-beginning) (region-end)))
1680 (continue (ispell-continue))
1681 (t
1682 (ispell-set-spellchecker-params) ; Initialize variables and dicts alists
1683 (ispell-accept-buffer-local-defs) ; use the correct dictionary
1684 (let ((cursor-location (point)) ; retain cursor location
1685 (word (ispell-get-word following))
1686 start end poss new-word replace)
1687 ;; De-structure return word info list.
1688 (setq start (car (cdr word))
1689 end (car (cdr (cdr word)))
1690 word (car word))
1691
1692 ;; At this point it used to ignore 2-letter words.
1693 ;; But that is silly; if the user asks for it, we should do it. - rms.
1694 (or quietly
1695 (message "Checking spelling of %s..."
1696 (funcall ispell-format-word-function word)))
1697 (ispell-send-string "%\n") ; put in verbose mode
1698 (ispell-send-string (concat "^" word "\n"))
1699 ;; wait until ispell has processed word
1700 (while (progn
1701 (ispell-accept-output)
1702 (not (string= "" (car ispell-filter)))))
1703 ;;(ispell-send-string "!\n") ;back to terse mode.
1704 (setq ispell-filter (cdr ispell-filter)) ; remove extra \n
1705 (if (and ispell-filter (listp ispell-filter))
1706 (if (> (length ispell-filter) 1)
1707 (error "Ispell and its process have different character maps")
1708 (setq poss (ispell-parse-output (car ispell-filter)))))
1709 (cond ((eq poss t)
1710 (or quietly
1711 (message "%s is correct"
1712 (funcall ispell-format-word-function word)))
1713 (and (featurep 'xemacs)
1714 (extent-at start)
1715 (and (fboundp 'delete-extent)
1716 (delete-extent (extent-at start)))))
1717 ((stringp poss)
1718 (or quietly
1719 (message "%s is correct because of root %s"
1720 (funcall ispell-format-word-function word)
1721 (funcall ispell-format-word-function poss)))
1722 (and (featurep 'xemacs)
1723 (extent-at start)
1724 (and (fboundp 'delete-extent)
1725 (delete-extent (extent-at start)))))
1726 ((null poss)
1727 (message "Error checking word %s using %s with %s dictionary"
1728 (funcall ispell-format-word-function word)
1729 (file-name-nondirectory ispell-program-name)
1730 (or ispell-current-dictionary "default")))
1731 (ispell-check-only ; called from ispell minor mode.
1732 (if (fboundp 'make-extent)
1733 (if (fboundp 'set-extent-property)
1734 (let ((ext (make-extent start end)))
1735 (set-extent-property ext 'face ispell-highlight-face)
1736 (set-extent-property ext 'priority 2000)))
1737 (beep)
1738 (message "%s is incorrect"
1739 (funcall ispell-format-word-function word))))
1740 (t ; prompt for correct word.
1741 (save-window-excursion
1742 (setq replace (ispell-command-loop
1743 (car (cdr (cdr poss)))
1744 (car (cdr (cdr (cdr poss))))
1745 (car poss) start end)))
1746 (cond ((equal 0 replace)
1747 (ispell-add-per-file-word-list (car poss)))
1748 (replace
1749 (setq new-word (if (atom replace) replace (car replace))
1750 cursor-location (+ (- (length word) (- end start))
1751 cursor-location))
1752 (if (not (equal new-word (car poss)))
1753 (progn
1754 (goto-char start)
1755 ;; Insert first and then delete,
1756 ;; to avoid collapsing markers before and after
1757 ;; into a single place.
1758 (ispell-insert-word new-word)
1759 (delete-region (point) end)
1760 ;; It is meaningless to preserve the cursor position
1761 ;; inside a word that has changed.
1762 (setq cursor-location (point))
1763 (setq end (point))))
1764 (if (not (atom replace)) ;recheck spelling of replacement
1765 (progn
1766 (if (car (cdr replace)) ; query replace requested
1767 (save-window-excursion
1768 (query-replace word new-word t)))
1769 (goto-char start)
1770 ;; single word could be split into multiple words
1771 (setq ispell-quit (not (ispell-region start end)))
1772 ))))
1773 ;; keep if rechecking word and we keep choices win.
1774 (if (get-buffer ispell-choices-buffer)
1775 (kill-buffer ispell-choices-buffer))))
1776 (ispell-pdict-save ispell-silently-savep)
1777 ;; NB: Cancels ispell-quit incorrectly if called from ispell-region
1778 (if ispell-quit (setq ispell-quit nil replace 'quit))
1779 (goto-char cursor-location) ; return to original location
1780 replace))))
1781
1782
1783 (defun ispell-get-word (following &optional extra-otherchars)
1784 "Return the word for spell-checking according to ispell syntax.
1785 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
1786 is non-nil when called interactively, then the following word
1787 \(rather than preceding\) is checked when the cursor is not over a word.
1788 Optional second argument contains otherchars that can be included in word
1789 many times.
1790
1791 Word syntax is controlled by the definition of the chosen dictionary,
1792 which is in `ispell-local-dictionary-alist' or `ispell-dictionary-alist'."
1793 (ispell-set-spellchecker-params) ; Initialize variables and dicts alists
1794 (let* ((ispell-casechars (ispell-get-casechars))
1795 (ispell-not-casechars (ispell-get-not-casechars))
1796 (ispell-otherchars (ispell-get-otherchars))
1797 (ispell-many-otherchars-p (ispell-get-many-otherchars-p))
1798 (word-regexp (concat ispell-casechars
1799 "+\\("
1800 (if (not (string= "" ispell-otherchars))
1801 (concat ispell-otherchars "?"))
1802 (if extra-otherchars
1803 (concat extra-otherchars "?"))
1804 ispell-casechars
1805 "+\\)"
1806 (if (or ispell-many-otherchars-p
1807 extra-otherchars)
1808 "*" "?")))
1809 did-it-once prevpt
1810 start end word)
1811 ;; find the word
1812 (if (not (looking-at ispell-casechars))
1813 (if following
1814 (re-search-forward ispell-casechars (point-max) t)
1815 (re-search-backward ispell-casechars (point-min) t)))
1816 ;; move to front of word
1817 (re-search-backward ispell-not-casechars (point-min) 'start)
1818 (while (and (or (and (not (string= "" ispell-otherchars))
1819 (looking-at ispell-otherchars))
1820 (and extra-otherchars (looking-at extra-otherchars)))
1821 (not (bobp))
1822 (or (not did-it-once)
1823 ispell-many-otherchars-p)
1824 (not (eq prevpt (point))))
1825 (if (and extra-otherchars (looking-at extra-otherchars))
1826 (progn
1827 (backward-char 1)
1828 (if (looking-at ispell-casechars)
1829 (re-search-backward ispell-not-casechars (point-min) 'move)))
1830 (setq did-it-once t
1831 prevpt (point))
1832 (backward-char 1)
1833 (if (looking-at ispell-casechars)
1834 (re-search-backward ispell-not-casechars (point-min) 'move)
1835 (backward-char -1))))
1836 ;; Now mark the word and save to string.
1837 (if (not (re-search-forward word-regexp (point-max) t))
1838 (if ispell-check-only
1839 ;; return dummy word when just flagging misspellings
1840 (list "" (point) (point))
1841 (error "No word found to check!"))
1842 (setq start (copy-marker (match-beginning 0))
1843 end (point-marker)
1844 word (buffer-substring-no-properties start end))
1845 (list word start end))))
1846
1847
1848 ;;; Global ispell-pdict-modified-p is set by ispell-command-loop and
1849 ;;; tracks changes in the dictionary. The global may either be
1850 ;;; a value or a list, whose value is the state of whether the
1851 ;;; dictionary needs to be saved.
1852
1853 ;;;###autoload
1854 (defun ispell-pdict-save (&optional no-query force-save)
1855 "Check to see if the personal dictionary has been modified.
1856 If so, ask if it needs to be saved."
1857 (interactive (list ispell-silently-savep t))
1858 (if (and ispell-pdict-modified-p (listp ispell-pdict-modified-p))
1859 (setq ispell-pdict-modified-p (car ispell-pdict-modified-p)))
1860 (if (or ispell-pdict-modified-p force-save)
1861 (if (or no-query (y-or-n-p "Personal dictionary modified. Save? "))
1862 (progn
1863 (ispell-send-string "#\n") ; save dictionary
1864 (message "Personal dictionary saved."))))
1865 ;; unassert variable, even if not saved to avoid questioning.
1866 (setq ispell-pdict-modified-p nil))
1867
1868
1869 (defun ispell-command-loop (miss guess word start end)
1870 "Display possible corrections from list MISS.
1871 GUESS lists possibly valid affix construction of WORD.
1872 Returns nil to keep word.
1873 Returns 0 to insert locally into buffer-local dictionary.
1874 Returns string for new chosen word.
1875 Returns list for new replacement word (will be rechecked).
1876 Query-replace when list length is 2.
1877 Automatic query-replace when second element is `query-replace'.
1878 Highlights the word, which is assumed to run from START to END.
1879 Global `ispell-pdict-modified-p' becomes a list where the only value
1880 indicates whether the dictionary has been modified when option `a'
1881 or `i' is used.
1882 Global `ispell-quit' set to start location to continue spell session."
1883 (let ((count ?0)
1884 (line ispell-choices-win-default-height)
1885 ;; ensure 4 context lines.
1886 (max-lines (- (ispell-adjusted-window-height) 4))
1887 (choices miss)
1888 (window-min-height (min window-min-height
1889 ispell-choices-win-default-height))
1890 (command-characters '( ? ?i ?a ?A ?r ?R ?? ?x ?X ?q ?l ?u ?m ))
1891 (dedicated (window-dedicated-p (selected-window)))
1892 (skipped 0)
1893 char num result textwin dedicated-win)
1894
1895 ;; setup the *Choices* buffer with valid data.
1896 (with-current-buffer (get-buffer-create ispell-choices-buffer)
1897 (setq mode-line-format
1898 (concat
1899 "-- %b -- word: " word
1900 " -- dict: " (or ispell-current-dictionary "default")
1901 " -- prog: " (file-name-nondirectory ispell-program-name)))
1902 ;; XEmacs: no need for horizontal scrollbar in choices window
1903 (with-no-warnings
1904 (and (fboundp 'set-specifier)
1905 (boundp 'horizontal-scrollbar-visible-p)
1906 (set-specifier horizontal-scrollbar-visible-p nil
1907 (cons (current-buffer) nil))))
1908 (erase-buffer)
1909 (if guess
1910 (progn
1911 (insert "Affix rules generate and capitalize "
1912 "this word as shown below:\n\t")
1913 (while guess
1914 (if (> (+ 4 (current-column) (length (car guess)))
1915 (window-width))
1916 (progn
1917 (insert "\n\t")
1918 (setq line (1+ line))))
1919 (insert (car guess) " ")
1920 (setq guess (cdr guess)))
1921 (insert "\nUse option `i' to accept this spelling and put it in your private dictionary.\n")
1922 (setq line (+ line (if choices 3 2)))))
1923 (while (and choices
1924 (< (if (> (+ 7 (current-column) (length (car choices))
1925 (if (> count ?~) 3 0))
1926 (window-width))
1927 (progn
1928 (insert "\n")
1929 (setq line (1+ line)))
1930 line)
1931 max-lines))
1932 ;; not so good if there are over 20 or 30 options, but then, if
1933 ;; there are that many you don't want to scan them all anyway...
1934 (while (memq count command-characters) ; skip command characters.
1935 (setq count (ispell-int-char (1+ count))
1936 skipped (1+ skipped)))
1937 (insert "(" count ") " (car choices) " ")
1938 (setq choices (cdr choices)
1939 count (ispell-int-char (1+ count))))
1940 (setq count (ispell-int-char (- count ?0 skipped))))
1941
1942 ;; ensure word is visible
1943 (if (not (pos-visible-in-window-p end))
1944 (sit-for 0))
1945
1946 ;; allow temporary split of dedicated windows...
1947 (if dedicated
1948 (progn
1949 (setq dedicated-win (selected-window))
1950 (set-window-dedicated-p dedicated-win nil)))
1951
1952 ;; Display choices for misspelled word.
1953 (ispell-show-choices line end)
1954 (select-window (setq textwin (next-window)))
1955
1956 ;; highlight word, protecting current buffer status
1957 (unwind-protect
1958 (progn
1959 (and ispell-highlight-p
1960 (ispell-highlight-spelling-error start end t))
1961 ;; Loop until a valid choice is made.
1962 (while
1963 (eq
1964 t
1965 (setq
1966 result
1967 (progn
1968 (undo-boundary)
1969 (let (message-log-max)
1970 (message (concat "C-h or ? for more options; SPC to leave "
1971 "unchanged, Character to replace word")))
1972 (let ((inhibit-quit t)
1973 (input-valid t))
1974 (setq char nil skipped 0)
1975 ;; If the user types C-g, or generates some other
1976 ;; non-character event (such as a frame switch
1977 ;; event), stop ispell. As a special exception,
1978 ;; ignore mouse events occurring in the same frame.
1979 (while (and input-valid (not (characterp char)))
1980 (setq char (read-key))
1981 (setq input-valid
1982 (or (characterp char)
1983 (and (mouse-event-p char)
1984 (eq (selected-frame)
1985 (window-frame
1986 (posn-window (event-start char))))))))
1987 (when (or quit-flag (not input-valid) (= char ?\C-g))
1988 (setq char ?X quit-flag nil)))
1989 ;; Adjust num to array offset skipping command characters.
1990 (let ((com-chars command-characters))
1991 (while com-chars
1992 (if (and (> (car com-chars) ?0) (< (car com-chars) char))
1993 (setq skipped (1+ skipped)))
1994 (setq com-chars (cdr com-chars)))
1995 (setq num (- char ?0 skipped)))
1996
1997 (cond
1998 ((= char ? ) nil) ; accept word this time only
1999 ((= char ?i) ; accept and insert word into pers dict
2000 (ispell-send-string (concat "*" word "\n"))
2001 (setq ispell-pdict-modified-p '(t)) ; dictionary modified!
2002 nil)
2003 ((or (= char ?a) (= char ?A)) ; accept word without insert
2004 (ispell-send-string (concat "@" word "\n"))
2005 (if (null ispell-pdict-modified-p)
2006 (setq ispell-pdict-modified-p
2007 (list ispell-pdict-modified-p)))
2008 (if (= char ?A) 0)) ; return 0 for ispell-add buffer-local
2009 ((or (= char ?r) (= char ?R)) ; type in replacement
2010 (and (eq 'block ispell-highlight-p) ; refresh tty's
2011 (ispell-highlight-spelling-error start end nil t))
2012 (let ((result
2013 (if (or (= char ?R) ispell-query-replace-choices)
2014 (list (read-string
2015 (format "Query-replacement for %s: "word)
2016 word)
2017 t)
2018 (cons (read-string "Replacement for: " word)
2019 nil))))
2020 (and (eq 'block ispell-highlight-p)
2021 (ispell-highlight-spelling-error start end nil
2022 'block))
2023 result))
2024 ((or (= char ??) (= char help-char) (= char ?\C-h))
2025 (and (eq 'block ispell-highlight-p)
2026 (ispell-highlight-spelling-error start end nil t))
2027 (ispell-help)
2028 (and (eq 'block ispell-highlight-p)
2029 (ispell-highlight-spelling-error start end nil
2030 'block))
2031 t)
2032 ;; Quit and move point back.
2033 ((= char ?x)
2034 (ispell-pdict-save ispell-silently-savep)
2035 (message "Exited spell-checking")
2036 (setq ispell-quit t)
2037 nil)
2038 ;; Quit and preserve point.
2039 ((= char ?X)
2040 (ispell-pdict-save ispell-silently-savep)
2041 (message "%s"
2042 (substitute-command-keys
2043 (concat "Spell-checking suspended;"
2044 " use C-u \\[ispell-word] to resume")))
2045 (setq ispell-quit start)
2046 nil)
2047 ((= char ?q)
2048 (if (y-or-n-p "Really kill Ispell process? ")
2049 (progn
2050 (ispell-kill-ispell t) ; terminate process.
2051 (setq ispell-quit (or (not ispell-checking-message)
2052 (point))
2053 ispell-pdict-modified-p nil))
2054 t)) ; continue if they don't quit.
2055 ((= char ?l)
2056 (and (eq 'block ispell-highlight-p) ; refresh tty displays
2057 (ispell-highlight-spelling-error start end nil t))
2058 (let ((new-word (read-string
2059 "Lookup string (`*' is wildcard): "
2060 word)))
2061 (if new-word
2062 (progn
2063 (with-current-buffer (get-buffer-create
2064 ispell-choices-buffer)
2065 (erase-buffer)
2066 (setq count ?0
2067 skipped 0
2068 mode-line-format ;; setup the *Choices* buffer with valid data.
2069 (concat "-- %b -- word: " new-word
2070 " -- word-list: "
2071 (or ispell-complete-word-dict
2072 ispell-alternate-dictionary))
2073 miss (lookup-words new-word)
2074 choices miss
2075 line ispell-choices-win-default-height)
2076 (while (and choices ; adjust choices window.
2077 (< (if (> (+ 7 (current-column)
2078 (length (car choices))
2079 (if (> count ?~) 3 0))
2080 (window-width))
2081 (progn
2082 (insert "\n")
2083 (setq line (1+ line)))
2084 line)
2085 max-lines))
2086 (while (memq count command-characters)
2087 (setq count (ispell-int-char (1+ count))
2088 skipped (1+ skipped)))
2089 (insert "(" count ") " (car choices) " ")
2090 (setq choices (cdr choices)
2091 count (ispell-int-char (1+ count))))
2092 (setq count (ispell-int-char
2093 (- count ?0 skipped))))
2094 (ispell-show-choices line end)
2095 (select-window (next-window)))))
2096 (and (eq 'block ispell-highlight-p)
2097 (ispell-highlight-spelling-error start end nil
2098 'block))
2099 t) ; reselect from new choices
2100 ((= char ?u) ; insert lowercase into dictionary
2101 (ispell-send-string (concat "*" (downcase word) "\n"))
2102 (setq ispell-pdict-modified-p '(t)) ; dictionary modified!
2103 nil)
2104 ((= char ?m) ; type in what to insert
2105 (ispell-send-string
2106 (concat "*" (read-string "Insert: " word) "\n"))
2107 (setq ispell-pdict-modified-p '(t))
2108 (cons word nil))
2109 ((and (>= num 0) (< num count))
2110 (if ispell-query-replace-choices ; Query replace flag
2111 (list (nth num miss) 'query-replace)
2112 (nth num miss)))
2113 ((= char ?\C-l)
2114 (redraw-display) t)
2115 ((= char ?\C-r)
2116 ;; This may have alignment errors if current line is edited
2117 (if (marker-position ispell-recursive-edit-marker)
2118 (progn
2119 (message "Only one recursive edit session supported")
2120 (beep)
2121 (sit-for 2))
2122 (set-marker ispell-recursive-edit-marker start)
2123 ;;(set-marker ispell-region-end reg-end)
2124 (and ispell-highlight-p ; unhighlight
2125 (ispell-highlight-spelling-error start end))
2126 (unwind-protect
2127 (progn
2128 (message
2129 "%s"
2130 (substitute-command-keys
2131 (concat "Exit recursive edit with"
2132 " \\[exit-recursive-edit]")))
2133 (save-window-excursion (save-excursion
2134 (recursive-edit))))
2135 ;; protected
2136 (goto-char ispell-recursive-edit-marker)
2137 (if (not (equal (marker-buffer
2138 ispell-recursive-edit-marker)
2139 (current-buffer)))
2140 (progn
2141 (set-marker ispell-recursive-edit-marker nil)
2142 (error
2143 "Cannot continue ispell from this buffer.")))
2144 (set-marker ispell-recursive-edit-marker nil)))
2145 (list word nil)) ; recheck starting at this word.
2146 ((= char ?\C-z)
2147 (funcall (key-binding "\C-z"))
2148 t)
2149 (t (ding) t))))))
2150 result)
2151 ;; protected
2152 (and ispell-highlight-p ; unhighlight
2153 (save-window-excursion
2154 (select-window textwin)
2155 (ispell-highlight-spelling-error start end)))
2156 (if dedicated
2157 (set-window-dedicated-p dedicated-win t)))))
2158
2159
2160
2161 (defun ispell-show-choices (line end)
2162 "Show the choices in another buffer or frame."
2163 (if (and ispell-use-framepop-p (fboundp 'framepop-display-buffer))
2164 (progn
2165 (framepop-display-buffer (get-buffer ispell-choices-buffer))
2166 ;; (get-buffer-window ispell-choices-buffer t)
2167 (select-window (previous-window))) ; *Choices* window
2168 ;; standard selection by splitting a small buffer out of this window.
2169 (let ((choices-window (get-buffer-window ispell-choices-buffer)))
2170 (if choices-window
2171 (if (= line (ispell-adjusted-window-height choices-window))
2172 (select-window choices-window)
2173 ;; *Choices* window changed size. Adjust the choices window
2174 ;; without scrolling the spelled window when possible
2175 (let ((window-line
2176 (- line (ispell-adjusted-window-height choices-window)))
2177 (visible (progn (vertical-motion -1) (point))))
2178 (if (< line ispell-choices-win-default-height)
2179 (setq window-line (+ window-line
2180 (- ispell-choices-win-default-height
2181 line))))
2182 (move-to-window-line 0)
2183 (vertical-motion window-line)
2184 (set-window-start (selected-window)
2185 (if (> (point) visible) visible (point)))
2186 (goto-char end)
2187 (select-window choices-window)
2188 (enlarge-window window-line)))
2189 ;; Overlay *Choices* window when it isn't showing
2190 (ispell-overlay-window (max line ispell-choices-win-default-height)))
2191 (switch-to-buffer ispell-choices-buffer)
2192 (goto-char (point-min)))))
2193
2194
2195 ;;;###autoload
2196 (defun ispell-help ()
2197 "Display a list of the options available when a misspelling is encountered.
2198
2199 Selections are:
2200
2201 DIGIT: Replace the word with a digit offered in the *Choices* buffer.
2202 SPC: Accept word this time.
2203 `i': Accept word and insert into private dictionary.
2204 `a': Accept word for this session.
2205 `A': Accept word and place in `buffer-local dictionary'.
2206 `r': Replace word with typed-in value. Rechecked.
2207 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
2208 `?': Show these commands.
2209 `x': Exit spelling buffer. Move cursor to original point.
2210 `X': Exit spelling buffer. Leaves cursor at the current point, and permits
2211 the aborted check to be completed later.
2212 `q': Quit spelling session (Kills ispell process).
2213 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
2214 `u': Like `i', but the word is lower-cased first.
2215 `m': Place typed-in value in personal dictionary, then recheck current word.
2216 `C-l': Redraw screen.
2217 `C-r': Recursive edit.
2218 `C-z': Suspend Emacs or iconify frame."
2219
2220 (if (equal ispell-help-in-bufferp 'electric)
2221 (progn
2222 (require 'ehelp)
2223 (with-electric-help
2224 (function (lambda ()
2225 ;;This shouldn't be necessary: with-electric-help needs
2226 ;; an optional argument telling it about the smallest
2227 ;; acceptable window-height of the help buffer.
2228 ;;(if (< (window-height) 15)
2229 ;; (enlarge-window
2230 ;; (- 15 (ispell-adjusted-window-height))))
2231 (princ "Selections are:
2232
2233 DIGIT: Replace the word with a digit offered in the *Choices* buffer.
2234 SPC: Accept word this time.
2235 `i': Accept word and insert into private dictionary.
2236 `a': Accept word for this session.
2237 `A': Accept word and place in `buffer-local dictionary'.
2238 `r': Replace word with typed-in value. Rechecked.
2239 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
2240 `?': Show these commands.
2241 `x': Exit spelling buffer. Move cursor to original point.
2242 `X': Exit spelling buffer. Leaves cursor at the current point, and permits
2243 the aborted check to be completed later.
2244 `q': Quit spelling session (Kills ispell process).
2245 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
2246 `u': Like `i', but the word is lower-cased first.
2247 `m': Place typed-in value in personal dictionary, then recheck current word.
2248 `C-l': Redraw screen.
2249 `C-r': Recursive edit.
2250 `C-z': Suspend Emacs or iconify frame.")
2251 nil))))
2252
2253
2254 (let ((help-1 (concat "[r/R]eplace word; [a/A]ccept for this session; "
2255 "[i]nsert into private dictionary"))
2256 (help-2 (concat "[l]ook a word up in alternate dictionary; "
2257 "e[x/X]it; [q]uit session"))
2258 (help-3 (concat "[u]ncapitalized insert into dict. "
2259 "Type 'x C-h f ispell-help' for more help")))
2260 (save-window-excursion
2261 (if ispell-help-in-bufferp
2262 (progn
2263 (ispell-overlay-window 4)
2264 (switch-to-buffer (get-buffer-create "*Ispell Help*"))
2265 (insert (concat help-1 "\n" help-2 "\n" help-3))
2266 (sit-for 5)
2267 (kill-buffer "*Ispell Help*"))
2268 (unwind-protect
2269 (let ((resize-mini-windows 'grow-only))
2270 (select-window (minibuffer-window))
2271 (erase-buffer)
2272 (message nil)
2273 ;;(set-minibuffer-window (selected-window))
2274 (enlarge-window 2)
2275 (insert (concat help-1 "\n" help-2 "\n" help-3))
2276 (sit-for 5))
2277 (erase-buffer)))))))
2278
2279
2280 (defun lookup-words (word &optional lookup-dict)
2281 "Look up WORD in optional word-list dictionary LOOKUP-DICT.
2282 A `*' serves as a wild card. If no wild cards, `look' is used if it exists.
2283 Otherwise the variable `ispell-grep-command' contains the command used to
2284 search for the words (usually egrep).
2285
2286 Optional second argument contains the dictionary to use; the default is
2287 `ispell-alternate-dictionary', overridden by `ispell-complete-word-dict'
2288 if defined."
2289 ;; We don't use the filter for this function, rather the result is written
2290 ;; into a buffer. Hence there is no need to save the filter values.
2291 (if (null lookup-dict)
2292 (setq lookup-dict (or ispell-complete-word-dict
2293 ispell-alternate-dictionary)))
2294
2295 (if lookup-dict
2296 (unless (file-readable-p lookup-dict)
2297 (error "lookup-words error: Unreadable or missing plain word-list %s."
2298 lookup-dict))
2299 (error (concat "lookup-words error: No plain word-list found at system"
2300 "default locations. "
2301 "Customize `ispell-alternate-dictionary' to set yours.")))
2302
2303 (let* ((process-connection-type ispell-use-ptys-p)
2304 (wild-p (string-match "\\*" word))
2305 (look-p (and ispell-look-p ; Only use look for an exact match.
2306 (or ispell-have-new-look (not wild-p))))
2307 (prog (if look-p ispell-look-command ispell-grep-command))
2308 (args (if look-p ispell-look-options ispell-grep-options))
2309 status results loc)
2310 (with-temp-buffer
2311 (message "Starting \"%s\" process..." (file-name-nondirectory prog))
2312 (if look-p
2313 nil
2314 ;; Convert * to .*
2315 (insert "^" word "$")
2316 (while (search-backward "*" nil t) (insert "."))
2317 (setq word (buffer-string))
2318 (erase-buffer))
2319 (setq status (apply 'ispell-call-process prog nil t nil
2320 (nconc (if (and args (> (length args) 0))
2321 (list args)
2322 (if look-p nil
2323 (list "-e")))
2324 (list word)
2325 (if lookup-dict (list lookup-dict)))))
2326 ;; `grep' returns status 1 and no output when word not found, which
2327 ;; is a perfectly normal thing.
2328 (if (stringp status)
2329 (error "error: %s exited with signal %s"
2330 (file-name-nondirectory prog) status)
2331 ;; Else collect words into `results' in FIFO order.
2332 (goto-char (point-max))
2333 ;; Assure we've ended with \n.
2334 (or (bobp) (= (preceding-char) ?\n) (insert ?\n))
2335 (while (not (bobp))
2336 (setq loc (point))
2337 (forward-line -1)
2338 (push (buffer-substring-no-properties (point)
2339 (1- loc))
2340 results))))
2341 (if (and results (string-match ".+: " (car results)))
2342 (error "%s error: %s" ispell-grep-command (car results)))
2343 results))
2344
2345
2346 ;; "ispell-filter" is a list of output lines from the generating function.
2347 ;; Each full line (ending with \n) is a separate item on the list.
2348 ;; "output" can contain multiple lines, part of a line, or both.
2349 ;; "start" and "end" are used to keep bounds on lines when "output" contains
2350 ;; multiple lines.
2351 ;; "ispell-filter-continue" is true when we have received only part of a
2352 ;; line as output from a generating function ("output" did not end with \n)
2353 ;; THIS FUNCTION WILL FAIL IF THE PROCESS OUTPUT DOESN'T END WITH \n!
2354 ;; This is the case when a process dies or fails. The default behavior
2355 ;; in this case treats the next input received as fresh input.
2356
2357 (defun ispell-filter (process output)
2358 "Output filter function for ispell, grep, and look."
2359 (let ((start 0)
2360 (continue t)
2361 end)
2362 (while continue
2363 (setq end (string-match "\n" output start)) ; get text up to the newline.
2364 ;; If we get out of sync and ispell-filter-continue is asserted when we
2365 ;; are not continuing, treat the next item as a separate list. When
2366 ;; ispell-filter-continue is asserted, ispell-filter *should* always be a
2367 ;; list!
2368
2369 ;; Continue with same line (item)?
2370 (if (and ispell-filter-continue ispell-filter (listp ispell-filter))
2371 ;; Yes. Add it to the prev item
2372 (setcar ispell-filter
2373 (concat (car ispell-filter) (substring output start end)))
2374 ;; No. This is a new line and item.
2375 (setq ispell-filter
2376 (cons (substring output start end) ispell-filter)))
2377 (if (null end)
2378 ;; We've completed reading the output, but didn't finish the line.
2379 (setq ispell-filter-continue t continue nil)
2380 ;; skip over newline, this line complete.
2381 (setq ispell-filter-continue nil end (1+ end))
2382 (if (= end (length output)) ; No more lines in output
2383 (setq continue nil) ; so we can exit the filter.
2384 (setq start end)))))) ; else move start to next line of input
2385
2386
2387 ;;; This function destroys the mark location if it is in the word being
2388 ;;; highlighted.
2389 (defun ispell-highlight-spelling-error-generic (start end &optional highlight
2390 refresh)
2391 "Highlight the word from START to END with a kludge using `inverse-video'.
2392 When the optional third arg HIGHLIGHT is set, the word is highlighted;
2393 otherwise it is displayed normally.
2394 Uses block cursor to highlight one character.
2395 Optional REFRESH will unhighlighted then highlight, using block cursor
2396 highlighting when REFRESH is equal to `block'."
2397 (and (eq 'block ispell-highlight-p)
2398 (or (eq 'block refresh)
2399 (setq start (1+ start)))) ; On block non-refresh, inc start.
2400 (let ((modified (buffer-modified-p)) ; don't allow this fn to modify buffer
2401 (buffer-read-only nil) ; Allow highlighting read-only buffers.
2402 (text (buffer-substring-no-properties start end))
2403 ; Save highlight region.
2404 (inhibit-quit t) ; inhibit interrupt processing here.
2405 (buffer-undo-list t)) ; don't clutter the undo list.
2406 (goto-char end)
2407 (delete-region start end)
2408 (insert-char ? (- end start)) ; minimize amount of redisplay
2409 (sit-for 0) ; update display
2410 (if highlight (setq inverse-video (not inverse-video))) ; toggle video
2411 (delete-region start end) ; delete whitespace
2412 (insert text) ; insert text in inverse video.
2413 (sit-for 0) ; update display showing inverse video.
2414 (if (not highlight)
2415 (goto-char end)
2416 (setq inverse-video (not inverse-video)) ; toggle video
2417 (and (eq 'block ispell-highlight-p)
2418 (goto-char (1- start)))) ; use block cursor to "highlight" char
2419 (set-buffer-modified-p modified) ; don't modify if flag not set.
2420 (and refresh ; re-highlight
2421 (ispell-highlight-spelling-error-generic
2422 (if (eq 'block refresh) start (- start 2)) end t))))
2423
2424
2425 (defun ispell-highlight-spelling-error-xemacs (start end &optional highlight)
2426 "Highlight the word from START to END using `isearch-highlight'.
2427 When the optional third arg HIGHLIGHT is set, the word is highlighted,
2428 otherwise it is displayed normally."
2429 (if highlight
2430 (isearch-highlight start end)
2431 (isearch-dehighlight))
2432 ;;(sit-for 0)
2433 )
2434
2435
2436 (defun ispell-highlight-spelling-error-overlay (start end &optional highlight)
2437 "Highlight the word from START to END using overlays.
2438 When the optional third arg HIGHLIGHT is set, the word is highlighted
2439 otherwise it is displayed normally.
2440
2441 The variable `ispell-highlight-face' selects the face to use for highlighting."
2442 (if highlight
2443 (if ispell-overlay
2444 (move-overlay ispell-overlay start end (current-buffer))
2445 (setq ispell-overlay (make-overlay start end))
2446 (overlay-put ispell-overlay 'priority 1001) ;higher than lazy overlays
2447 (overlay-put ispell-overlay 'face ispell-highlight-face))
2448 (if ispell-overlay
2449 (delete-overlay ispell-overlay)))
2450 (if (and ispell-lazy-highlight (boundp 'lazy-highlight-cleanup))
2451 (if highlight
2452 (let ((isearch-string
2453 (concat
2454 "\\b"
2455 (regexp-quote (buffer-substring-no-properties start end))
2456 "\\b"))
2457 (isearch-regexp t)
2458 (isearch-case-fold-search nil))
2459 (isearch-lazy-highlight-new-loop
2460 (if (boundp 'reg-start) reg-start)
2461 (if (boundp 'reg-end) reg-end)))
2462 (lazy-highlight-cleanup lazy-highlight-cleanup)
2463 (setq isearch-lazy-highlight-last-string nil))))
2464
2465
2466 (defun ispell-highlight-spelling-error (start end &optional highlight refresh)
2467 (cond
2468 ((featurep 'xemacs)
2469 (ispell-highlight-spelling-error-xemacs start end highlight))
2470 ((and (featurep 'faces)
2471 (or (and (fboundp 'display-color-p) (display-color-p))
2472 window-system))
2473 (ispell-highlight-spelling-error-overlay start end highlight))
2474 (t (ispell-highlight-spelling-error-generic start end highlight refresh))))
2475
2476 (defun ispell-adjusted-window-height (&optional window)
2477 "Like `window-height', adjusted to correct for the effect of tall mode-lines.
2478 The value returned is actually the nominal number of text-lines in the
2479 window plus 1. On a terminal, this is the same value returned by
2480 `window-height', but if the window has a mode-line is taller than a normal
2481 text line, the returned value may be smaller than that from
2482 `window-height'."
2483 (cond ((fboundp 'window-text-height)
2484 (1+ (window-text-height window)))
2485 ((or (and (fboundp 'display-graphic-p) (display-graphic-p))
2486 (and (featurep 'xemacs) window-system))
2487 (1- (window-height window)))
2488 (t
2489 (window-height window))))
2490
2491 (defun ispell-overlay-window (height)
2492 "Create a window covering the top HEIGHT lines of the current window.
2493 Ensure that the line above point is still visible but otherwise avoid
2494 scrolling the current window. Leave the new window selected."
2495 (save-excursion
2496 (let ((oldot (save-excursion (vertical-motion -1) (point)))
2497 (top (save-excursion (move-to-window-line height) (point))))
2498 ;; If line above old point (line starting at oldot) would be
2499 ;; hidden by new window, scroll it to just below new win
2500 ;; otherwise set top line of other win so it doesn't scroll.
2501 (if (< oldot top) (setq top oldot))
2502 ;; if frame is unsplittable, temporarily disable that...
2503 (if (cdr (assq 'unsplittable (frame-parameters (selected-frame))))
2504 (let ((frame (selected-frame)))
2505 (modify-frame-parameters frame '((unsplittable . nil)))
2506 (split-window nil height)
2507 (modify-frame-parameters frame '((unsplittable . t))))
2508 (split-window nil height))
2509 (let ((deficit (- height (ispell-adjusted-window-height))))
2510 (when (> deficit 0)
2511 ;; Number of lines the window is still too short. We ensure that
2512 ;; there are at least (1- HEIGHT) lines visible in the window.
2513 (enlarge-window deficit)
2514 (goto-char top)
2515 (vertical-motion deficit)
2516 (setq top (min (point) oldot))))
2517 (set-window-start (next-window) top))))
2518
2519
2520 ;;; Should we add a compound word match return value?
2521 (defun ispell-parse-output (output &optional accept-list shift)
2522 "Parse the OUTPUT string from Ispell process and return:
2523 1: t for an exact match.
2524 2: A string containing the root word matched via suffix removal.
2525 3: A list of possible correct spellings of the format:
2526 (\"ORIGINAL-WORD\" OFFSET MISS-LIST GUESS-LIST)
2527 ORIGINAL-WORD is a string of the possibly misspelled word.
2528 OFFSET is an integer giving the line offset of the word.
2529 MISS-LIST and GUESS-LIST are possibly null lists of guesses and misses.
2530 4: nil when an error has occurred.
2531
2532 Optional second arg ACCEPT-LIST is list of words already accepted.
2533 Optional third arg SHIFT is an offset to apply based on previous corrections."
2534 (cond
2535 ((string= output "") t) ; for startup with pipes...
2536 ((string= output "*") t) ; exact match
2537 ((string= output "-") t) ; compound word match
2538 ((eq (aref output 0) ?+) ; found because of root word
2539 (substring output 2)) ; return root word
2540 ((equal 0 (string-match "[\ra-zA-Z]" output))
2541 (ding) ; error message from ispell!
2542 (message "Ispell error: %s" output)
2543 (sit-for 5)
2544 nil)
2545 (t ; need to process &, ?, and #'s
2546 (let ((type (aref output 0)) ; &, ?, or #
2547 (original-word (substring output 2 (string-match " " output 2)))
2548 (cur-count 0) ; contains number of misses + guesses
2549 count miss-list guess-list offset)
2550 (setq output (substring output (match-end 0))) ; skip over misspelling
2551 (if (eq type ?#)
2552 (setq count 0) ; no misses for type #
2553 (setq count (string-to-number output) ; get number of misses.
2554 output (substring output (1+ (string-match " " output 1)))))
2555 (setq offset (string-to-number output))
2556 (setq output (if (eq type ?#) ; No miss or guess list.
2557 nil
2558 (substring output (1+ (string-match " " output 1)))))
2559 (while output
2560 (let ((end (string-match ", \\|\\($\\)" output))) ; end of miss/guess.
2561 (setq cur-count (1+ cur-count))
2562 (if (> cur-count count)
2563 (push (substring output 0 end) guess-list)
2564 (push (substring output 0 end) miss-list))
2565 (setq output (if (match-end 1) ; True only when at end of line.
2566 nil ; No more misses or guesses.
2567 (substring output (+ end 2))))))
2568 ;; return results. Accept word if it was already accepted.
2569 ;; adjust offset.
2570 (if (member original-word accept-list)
2571 t
2572 (list original-word
2573 (if (numberp shift) (+ shift offset) offset)
2574 (nreverse miss-list) (nreverse guess-list)))))))
2575
2576
2577 (defun ispell-process-status ()
2578 "Return the status of the Ispell process.
2579 When asynchronous processes are not supported, `run' is always returned."
2580 (if ispell-async-processp
2581 (process-status ispell-process)
2582 (and ispell-process 'run)))
2583
2584
2585 (defun ispell-start-process ()
2586 "Start the ispell process, with support for no asynchronous processes.
2587 Keeps argument list for future ispell invocations for no async support."
2588 ;; Local dictionary becomes the global dictionary in use.
2589 (setq ispell-current-dictionary
2590 (or ispell-local-dictionary ispell-dictionary))
2591 (setq ispell-current-personal-dictionary
2592 (or ispell-local-pdict ispell-personal-dictionary))
2593 (let* ((default-directory
2594 (if (and (file-directory-p default-directory)
2595 (file-readable-p default-directory))
2596 default-directory
2597 ;; Defend against bad `default-directory'.
2598 (expand-file-name "~/")))
2599 (orig-args (ispell-get-ispell-args))
2600 (args
2601 (append
2602 (if (and ispell-current-dictionary ; Not for default dict (nil)
2603 (not (member "-d" orig-args))) ; Only define if not overridden.
2604 (list "-d" ispell-current-dictionary))
2605 orig-args
2606 (if ispell-current-personal-dictionary ; Use specified pers dict.
2607 (list "-p"
2608 (expand-file-name ispell-current-personal-dictionary)))
2609 ;; If we are using recent aspell or hunspell, make sure we use the
2610 ;; right encoding for communication. ispell or older aspell/hunspell
2611 ;; does not support this.
2612 (if ispell-encoding8-command
2613 (list
2614 (concat ispell-encoding8-command
2615 (symbol-name (ispell-get-coding-system)))))
2616 ispell-extra-args)))
2617
2618 ;; Initially we don't know any buffer's local words.
2619 (setq ispell-buffer-local-name nil)
2620
2621 (if ispell-async-processp
2622 (let ((process-connection-type ispell-use-ptys-p))
2623 (apply 'start-process
2624 "ispell" nil ispell-program-name
2625 "-a" ; Accept single input lines.
2626 ;; Make root/affix combos not in dict.
2627 ;; hunspell -m option means different.
2628 (if ispell-really-hunspell "" "-m")
2629 args))
2630 (setq ispell-cmd-args args
2631 ispell-output-buffer (generate-new-buffer " *ispell-output*")
2632 ispell-session-buffer (generate-new-buffer " *ispell-session*"))
2633 (ispell-send-string "\032\n") ; so Ispell prints version and exits
2634 t)))
2635
2636
2637 (defun ispell-init-process ()
2638 "Check status of Ispell process and start if necessary."
2639 (let* (;; Basename of dictionary used by the spell-checker
2640 (dict-bname (or (car (cdr (member "-d" (ispell-get-ispell-args))))
2641 ispell-current-dictionary))
2642 ;; Use "~/" as default-directory unless using Ispell with per-dir
2643 ;; personal dictionaries and not in a minibuffer under XEmacs
2644 (default-directory
2645 (if (or ispell-really-aspell
2646 ispell-really-hunspell
2647 ;; Protect against bad default-directory
2648 (not (and (file-directory-p default-directory)
2649 (file-readable-p default-directory)))
2650 ;; Ispell and per-dir personal dicts available
2651 (not (or (file-readable-p (concat default-directory
2652 ".ispell_words"))
2653 (file-readable-p (concat default-directory
2654 ".ispell_"
2655 (or dict-bname
2656 "default")))))
2657 ;; Ispell, in a minibuffer, and XEmacs
2658 (and (window-minibuffer-p)
2659 (not (fboundp 'minibuffer-selected-window))))
2660 (expand-file-name "~/")
2661 (expand-file-name default-directory))))
2662 ;; Check if process needs restart
2663 (if (and ispell-process
2664 (eq (ispell-process-status) 'run)
2665 ;; Unless we are using an explicit personal dictionary, ensure
2666 ;; we're in the same default directory! Restart check for
2667 ;; personal dictionary is done in
2668 ;; `ispell-internal-change-dictionary', called from
2669 ;; `ispell-buffer-local-dict'
2670 (or (or ispell-local-pdict ispell-personal-dictionary)
2671 (equal ispell-process-directory default-directory)))
2672 (setq ispell-filter nil ispell-filter-continue nil)
2673 ;; may need to restart to select new personal dictionary.
2674 (ispell-kill-ispell t)
2675 (message "Starting new Ispell process [%s] ..."
2676 (or ispell-local-dictionary ispell-dictionary "default"))
2677 (sit-for 0)
2678 (setq ispell-library-directory (ispell-check-version)
2679 ispell-process (ispell-start-process)
2680 ispell-filter nil
2681 ispell-filter-continue nil
2682 ispell-process-directory default-directory)
2683
2684 (unless (equal ispell-process-directory (expand-file-name "~/"))
2685 ;; At this point, `ispell-process-directory' will be "~/" unless using
2686 ;; Ispell with directory-specific dicts and not in XEmacs minibuffer.
2687 ;; If not, kill ispell process when killing buffer. It may be in a
2688 ;; removable device that would otherwise become un-mountable.
2689 (with-current-buffer
2690 (if (and (window-minibuffer-p) ;; In minibuffer
2691 (fboundp 'minibuffer-selected-window)) ;; Not XEmacs.
2692 ;; In this case kill ispell only when parent buffer is killed
2693 ;; to avoid over and over ispell kill.
2694 (window-buffer (minibuffer-selected-window))
2695 (current-buffer))
2696 ;; 'local does not automatically make hook buffer-local in XEmacs.
2697 (if (featurep 'xemacs)
2698 (make-local-hook 'kill-buffer-hook))
2699 (add-hook 'kill-buffer-hook
2700 (lambda () (ispell-kill-ispell t)) nil 'local)))
2701
2702 (if ispell-async-processp
2703 (set-process-filter ispell-process 'ispell-filter))
2704 ;; Protect against XEmacs bogus binding of `enable-multibyte-characters'.
2705 (if (and (or (featurep 'xemacs)
2706 (and (boundp 'enable-multibyte-characters)
2707 enable-multibyte-characters))
2708 (fboundp 'set-process-coding-system))
2709 (set-process-coding-system ispell-process (ispell-get-coding-system)
2710 (ispell-get-coding-system)))
2711 ;; Get version ID line
2712 (ispell-accept-output 3)
2713 ;; get more output if filter empty?
2714 (if (null ispell-filter) (ispell-accept-output 3))
2715 (cond ((null ispell-filter)
2716 (error "%s did not output version line" ispell-program-name))
2717 ((and
2718 (stringp (car ispell-filter))
2719 (if (string-match "warning: " (car ispell-filter))
2720 (progn
2721 (ispell-accept-output 3) ; was warn msg.
2722 (stringp (car ispell-filter)))
2723 (null (cdr ispell-filter)))
2724 (string-match "^@(#) " (car ispell-filter)))
2725 ;; got the version line as expected (we already know it's the right
2726 ;; version, so don't bother checking again.)
2727 nil)
2728 (t
2729 ;; Otherwise, it must be an error message. Show the user.
2730 ;; But first wait to see if some more output is going to arrive.
2731 ;; Otherwise we get cool errors like "Can't open ".
2732 (sleep-for 1)
2733 (ispell-accept-output 3)
2734 (error "%s" (mapconcat 'identity ispell-filter "\n"))))
2735 (setq ispell-filter nil) ; Discard version ID line
2736 (let ((extended-char-mode (ispell-get-extended-character-mode)))
2737 (if extended-char-mode ; ~ extended character mode
2738 (ispell-send-string (concat extended-char-mode "\n"))))
2739 (if ispell-async-processp
2740 (if (featurep 'emacs)
2741 (set-process-query-on-exit-flag ispell-process nil)
2742 (if (fboundp 'set-process-query-on-exit-flag)
2743 (set-process-query-on-exit-flag ispell-process nil)
2744 (process-kill-without-query ispell-process)))))))
2745
2746 ;;;###autoload
2747 (defun ispell-kill-ispell (&optional no-error)
2748 "Kill current Ispell process (so that you may start a fresh one).
2749 With NO-ERROR, just return non-nil if there was no Ispell running."
2750 (interactive)
2751 ;; This hook is typically used by flyspell to flush some variables used
2752 ;; to optimize the common cases.
2753 (run-hooks 'ispell-kill-ispell-hook)
2754 (if (not (and ispell-process
2755 (eq (ispell-process-status) 'run)))
2756 (or no-error
2757 (error "There is no ispell process running!"))
2758 (if ispell-async-processp
2759 (delete-process ispell-process)
2760 ;; synchronous processes
2761 (ispell-send-string "\n") ; make sure side effects occurred.
2762 (kill-buffer ispell-output-buffer)
2763 (kill-buffer ispell-session-buffer)
2764 (setq ispell-output-buffer nil
2765 ispell-session-buffer nil))
2766 (setq ispell-process nil)
2767 (message "Ispell process killed")
2768 nil))
2769
2770 ;;; ispell-change-dictionary is set in some people's hooks. Maybe this should
2771 ;;; call ispell-init-process rather than wait for a spell checking command?
2772
2773 ;;;###autoload
2774 (defun ispell-change-dictionary (dict &optional arg)
2775 "Change to dictionary DICT for Ispell.
2776 With a prefix arg, set it \"globally\", for all buffers.
2777 Without a prefix arg, set it \"locally\", just for this buffer.
2778
2779 By just answering RET you can find out what the current dictionary is."
2780 (interactive
2781 (list (completing-read
2782 "Use new dictionary (RET for current, SPC to complete): "
2783 (and (fboundp 'ispell-valid-dictionary-list)
2784 (mapcar 'list (ispell-valid-dictionary-list)))
2785 nil t)
2786 current-prefix-arg))
2787 (ispell-set-spellchecker-params) ; Initialize variables and dicts alists
2788 (unless arg (ispell-buffer-local-dict 'no-reload))
2789 (if (equal dict "default") (setq dict nil))
2790 ;; This relies on completing-read's bug of returning "" for no match
2791 (cond ((equal dict "")
2792 (ispell-internal-change-dictionary)
2793 (message "Using %s dictionary"
2794 (or (and (not arg) ispell-local-dictionary)
2795 ispell-dictionary "default")))
2796 ((equal dict (or (and (not arg) ispell-local-dictionary)
2797 ispell-dictionary "default"))
2798 ;; Specified dictionary is the default already. Could reload
2799 ;; the dictionaries if needed.
2800 (ispell-internal-change-dictionary)
2801 (and (interactive-p)
2802 (message "No change, using %s dictionary" dict)))
2803 (t ; reset dictionary!
2804 (if (or (assoc dict ispell-local-dictionary-alist)
2805 (assoc dict ispell-dictionary-alist))
2806 (if arg
2807 ;; set default dictionary
2808 (setq ispell-dictionary dict)
2809 ;; set local dictionary
2810 (setq ispell-local-dictionary dict)
2811 (setq ispell-local-dictionary-overridden t))
2812 (error "Undefined dictionary: %s" dict))
2813 (ispell-internal-change-dictionary)
2814 (message "%s Ispell dictionary set to %s"
2815 (if arg "Global" "Local")
2816 dict))))
2817
2818 (defun ispell-internal-change-dictionary ()
2819 "Update the dictionary and the personal dictionary used by Ispell.
2820 This may kill the Ispell process; if so,
2821 a new one will be started when needed."
2822 (let ((dict (or ispell-local-dictionary ispell-dictionary))
2823 (pdict (or ispell-local-pdict ispell-personal-dictionary)))
2824 (unless (and (equal ispell-current-dictionary dict)
2825 (equal ispell-current-personal-dictionary pdict))
2826 (ispell-kill-ispell t)
2827 (setq ispell-current-dictionary dict
2828 ispell-current-personal-dictionary pdict))))
2829
2830 ;; Avoid error messages when compiling for these dynamic variables.
2831 (defvar ispell-start)
2832 (defvar ispell-end)
2833
2834 ;; Spelling of comments are checked when ispell-check-comments is non-nil.
2835
2836 ;;;###autoload
2837 (defun ispell-region (reg-start reg-end &optional recheckp shift)
2838 "Interactively check a region for spelling errors.
2839 Return nil if spell session is quit,
2840 otherwise returns shift offset amount for last line processed."
2841 (interactive "r") ; Don't flag errors on read-only bufs.
2842 (ispell-set-spellchecker-params) ; Initialize variables and dicts alists
2843 (if (not recheckp)
2844 (ispell-accept-buffer-local-defs)) ; set up dictionary, local words, etc.
2845 (let ((skip-region-start (make-marker))
2846 (rstart (make-marker)))
2847 (unwind-protect
2848 (save-excursion
2849 (message "Spell-checking %s using %s with %s dictionary..."
2850 (if (and (= reg-start (point-min)) (= reg-end (point-max)))
2851 (buffer-name) "region")
2852 (file-name-nondirectory ispell-program-name)
2853 (or ispell-current-dictionary "default"))
2854 ;; Returns cursor to original location.
2855 (save-window-excursion
2856 (goto-char reg-start)
2857 (let ((transient-mark-mode)
2858 (case-fold-search case-fold-search)
2859 (query-fcc t)
2860 in-comment key)
2861 (let (message-log-max)
2862 (message "searching for regions to skip"))
2863 (if (re-search-forward (ispell-begin-skip-region-regexp) reg-end t)
2864 (progn
2865 (setq key (match-string-no-properties 0))
2866 (set-marker skip-region-start (- (point) (length key)))
2867 (goto-char reg-start)))
2868 (let (message-log-max)
2869 (message
2870 "Continuing spelling check using %s with %s dictionary..."
2871 (file-name-nondirectory ispell-program-name)
2872 (or ispell-current-dictionary "default")))
2873 (set-marker rstart reg-start)
2874 (set-marker ispell-region-end reg-end)
2875 (while (and (not ispell-quit)
2876 (< (point) ispell-region-end))
2877 ;; spell-check region with skipping
2878 (if (and (marker-position skip-region-start)
2879 (<= skip-region-start (point)))
2880 (progn
2881 ;; If region inside line comment, must keep comment start.
2882 (setq in-comment (point)
2883 in-comment
2884 (and comment-start
2885 (or (null comment-end) (string= "" comment-end))
2886 (save-excursion
2887 (beginning-of-line)
2888 (re-search-forward comment-start in-comment t))
2889 comment-start))
2890 ;; Can change skip-regexps (in ispell-message)
2891 (ispell-skip-region key) ; moves pt past region.
2892 (set-marker rstart (point))
2893 ;; check for saving large attachments...
2894 (setq query-fcc (and query-fcc
2895 (ispell-ignore-fcc skip-region-start
2896 rstart)))
2897 (if (and (< rstart ispell-region-end)
2898 (re-search-forward
2899 (ispell-begin-skip-region-regexp)
2900 ispell-region-end t))
2901 (progn
2902 (setq key (match-string-no-properties 0))
2903 (set-marker skip-region-start
2904 (- (point) (length key)))
2905 (goto-char rstart))
2906 (set-marker skip-region-start nil))))
2907 (setq reg-end (max (point)
2908 (if (marker-position skip-region-start)
2909 (min skip-region-start ispell-region-end)
2910 (marker-position ispell-region-end))))
2911 (let* ((ispell-start (point))
2912 (ispell-end (min (point-at-eol) reg-end))
2913 (string (ispell-get-line
2914 ispell-start ispell-end in-comment)))
2915 (if in-comment ; account for comment chars added
2916 (setq ispell-start (- ispell-start (length in-comment))
2917 in-comment nil))
2918 (setq ispell-end (point)) ; "end" tracks region retrieved.
2919 (if string ; there is something to spell check!
2920 ;; (special start end)
2921 (setq shift (ispell-process-line string
2922 (and recheckp shift))))
2923 (goto-char ispell-end)))))
2924 (if ispell-quit
2925 nil
2926 (or shift 0)))
2927 ;; protected
2928 (if (and (not (and recheckp ispell-keep-choices-win))
2929 (get-buffer ispell-choices-buffer))
2930 (kill-buffer ispell-choices-buffer))
2931 (set-marker skip-region-start nil)
2932 (set-marker rstart nil)
2933 (if ispell-quit
2934 (progn
2935 ;; preserve or clear the region for ispell-continue.
2936 (if (not (numberp ispell-quit))
2937 (set-marker ispell-region-end nil)
2938 ;; Ispell-continue enabled - ispell-region-end is set.
2939 (goto-char ispell-quit))
2940 ;; Check for aborting
2941 (if (and ispell-checking-message (numberp ispell-quit))
2942 (progn
2943 (setq ispell-quit nil)
2944 (error "Message send aborted")))
2945 (if (not recheckp) (setq ispell-quit nil)))
2946 (if (not recheckp) (set-marker ispell-region-end nil))
2947 ;; Only save if successful exit.
2948 (ispell-pdict-save ispell-silently-savep)
2949 (message "Spell-checking %s using %s with %s dictionary...done"
2950 (if (and (= reg-start (point-min)) (= reg-end (point-max)))
2951 (buffer-name) "region")
2952 (file-name-nondirectory ispell-program-name)
2953 (or ispell-current-dictionary "default"))))))
2954
2955
2956 (defun ispell-begin-skip-region-regexp ()
2957 "Return a regexp of the search keys for region skipping.
2958 Includes `ispell-skip-region-alist' plus tex, tib, html, and comment keys.
2959 Must call after `ispell-buffer-local-parsing' due to dependence on mode."
2960 (mapconcat
2961 'identity
2962 (delq nil
2963 (list
2964 ;; messages
2965 (if (and ispell-checking-message
2966 (not (eq t ispell-checking-message)))
2967 (mapconcat #'car ispell-checking-message "\\|"))
2968 ;; tex
2969 (if (eq ispell-parser 'tex)
2970 (ispell-begin-tex-skip-regexp))
2971 ;; html stuff
2972 (if ispell-skip-html
2973 (ispell-begin-skip-region ispell-html-skip-alists))
2974 ;; tib
2975 (if ispell-skip-tib ispell-tib-ref-beginning)
2976 ;; Comments
2977 (if (and (eq 'exclusive ispell-check-comments) comment-start)
2978 ;; search from end of current comment to start of next comment.
2979 (if (string= "" comment-end) "^" (regexp-quote comment-end)))
2980 (if (and (null ispell-check-comments) comment-start)
2981 (regexp-quote comment-start))
2982 (ispell-begin-skip-region ispell-skip-region-alist)))
2983 "\\|"))
2984
2985
2986 (defun ispell-begin-skip-region (skip-alist)
2987 "Regular expression for start of regions to skip generated from SKIP-ALIST.
2988 Each selection should be a key of SKIP-ALIST;
2989 otherwise, the current line is skipped."
2990 (mapconcat (lambda (lst) (if (stringp (car lst)) (car lst) (eval (car lst))))
2991 skip-alist
2992 "\\|"))
2993
2994
2995 (defun ispell-begin-tex-skip-regexp ()
2996 "Regular expression of tex commands to skip.
2997 Generated from `ispell-tex-skip-alists'."
2998 (concat
2999 ;; raw tex keys
3000 (mapconcat (function (lambda (lst) (car lst)))
3001 (car ispell-tex-skip-alists)
3002 "\\|")
3003 "\\|"
3004 ;; keys wrapped in begin{}
3005 (mapconcat (function (lambda (lst)
3006 (concat "\\\\begin[ \t\n]*{[ \t\n]*"
3007 (car lst)
3008 "[ \t\n]*}")))
3009 (car (cdr ispell-tex-skip-alists))
3010 "\\|")))
3011
3012
3013 (defun ispell-skip-region-list ()
3014 "Return a list describing key and body regions to skip for this buffer.
3015 Includes regions defined by `ispell-skip-region-alist', tex mode,
3016 `ispell-html-skip-alists', and `ispell-checking-message'.
3017 Manual checking must include comments and tib references.
3018 The list is of the form described by variable `ispell-skip-region-alist'.
3019 Must call after `ispell-buffer-local-parsing' due to dependence on mode."
3020 (let ((skip-alist ispell-skip-region-alist))
3021 ;; only additional explicit region definition is tex.
3022 (if (eq ispell-parser 'tex)
3023 (setq case-fold-search nil
3024 skip-alist (append (car ispell-tex-skip-alists)
3025 (car (cdr ispell-tex-skip-alists))
3026 skip-alist)))
3027 (if ispell-skip-html
3028 (setq skip-alist (append ispell-html-skip-alists skip-alist)))
3029 (if (and ispell-checking-message
3030 (not (eq t ispell-checking-message)))
3031 (setq skip-alist (append ispell-checking-message skip-alist)))
3032 skip-alist))
3033
3034
3035 (defun ispell-tex-arg-end (&optional arg)
3036 "Skip across ARG number of braces."
3037 (condition-case nil
3038 (progn
3039 (while (looking-at "[ \t\n]*\\[") (forward-sexp))
3040 (forward-sexp (or arg 1)))
3041 (error
3042 (message "Error skipping s-expressions at point %d." (point))
3043 (beep)
3044 (sit-for 2))))
3045
3046
3047 (defun ispell-ignore-fcc (start end)
3048 "Delete the Fcc: message header when large attachments are included.
3049 Return value `nil' if file with large attachments are saved.
3050 This can be used to avoid multiple questions for multiple large attachments.
3051 Returns point to starting location afterwards."
3052 (let ((result t))
3053 (if (and ispell-checking-message ispell-message-fcc-skip)
3054 (if (< ispell-message-fcc-skip (- end start))
3055 (let (case-fold-search head-end)
3056 (goto-char (point-min))
3057 (setq head-end
3058 (or (re-search-forward
3059 (concat "^" (regexp-quote mail-header-separator) "$")
3060 nil t)
3061 (re-search-forward "^$" nil t)
3062 (point-min)))
3063 (goto-char (point-min))
3064 (if (re-search-forward "^Fcc:" head-end t)
3065 (if (y-or-n-p
3066 "Save copy of this message with large attachments? ")
3067 (setq result nil)
3068 (beginning-of-line)
3069 (kill-line 1)))
3070 (goto-char end))))
3071 result))
3072
3073
3074 (defun ispell-skip-region (key)
3075 "Skip across KEY and then to end of region.
3076 Key lookup determines region to skip.
3077 Point is placed at end of skipped region."
3078 ;; move over key to begin checking.
3079 (forward-char (length key))
3080 (let ((start (point))
3081 ;; Regenerate each call... This function can change region definition.
3082 (alist (ispell-skip-region-list))
3083 alist-key null-skip)
3084 (cond
3085 ;; what about quoted comment, or comment inside strings?
3086 ((and (null ispell-check-comments) comment-start
3087 (string= key comment-start))
3088 (if (string= "" comment-end)
3089 (forward-line)
3090 (search-forward comment-end ispell-region-end t)))
3091 ((and (eq 'exclusive ispell-check-comments) comment-start
3092 (string= key comment-end))
3093 (search-forward comment-start ispell-region-end :end))
3094 ((and ispell-skip-tib (string-match ispell-tib-ref-beginning key))
3095 (re-search-forward ispell-tib-ref-end ispell-region-end t))
3096 ;; markings from alist
3097 (t
3098 (while alist
3099 (setq alist-key (eval (car (car alist))))
3100 (if (string-match alist-key key)
3101 (progn
3102 (setq alist (cdr (car alist)))
3103 (cond
3104 ((null alist) (setq null-skip t)) ; done! Just skip key.
3105 ((not (consp alist))
3106 ;; Search past end of spell region to find this region end.
3107 (re-search-forward (eval alist) (point-max) t))
3108 ((and (= 1 (length alist))
3109 (stringp (car alist)))
3110 (re-search-forward (car alist) (point-max) t))
3111 (t
3112 (setq null-skip t) ; error handling in functions!
3113 (if (consp (cdr alist))
3114 (apply (car alist) (cdr alist))
3115 (funcall (car alist)))))
3116 (setq alist nil))
3117 (setq alist (cdr alist))))))
3118 (if (and (= start (point)) (null null-skip))
3119 (progn
3120 (message "Matching region end for `%s' point %d not found"
3121 key (point))
3122 (beep)
3123 (sit-for 2)))))
3124
3125
3126 (defun ispell-get-line (start end in-comment)
3127 "Grab the next line of data.
3128 Returns a string with the line data."
3129 (let ((ispell-casechars (ispell-get-casechars))
3130 string)
3131 (cond ; LOOK AT THIS LINE AND SKIP OR PROCESS
3132 ((eolp) ; END OF LINE, just go to next line.
3133 (forward-line))
3134 ;;((looking-at "[-#@*+!%~^]") ; SKIP SPECIAL ISPELL CHARACTERS
3135 ;; (forward-char 1)) ; not needed as quoted below.
3136 ((or (re-search-forward ispell-casechars end t) ; TEXT EXISTS
3137 (re-search-forward "[][()${}]" end t)) ; or MATH COMMANDS
3138 (setq string (concat "^" in-comment
3139 (buffer-substring-no-properties start end)
3140 "\n"))
3141 (goto-char end))
3142 (t (goto-char end))) ; EMPTY LINE, skip it.
3143 string))
3144
3145
3146 (defun ispell-looking-at (string)
3147 (let ((coding (ispell-get-coding-system))
3148 (len (length string)))
3149 (and (<= (+ (point) len) (point-max))
3150 (equal (encode-coding-string string coding)
3151 (encode-coding-string (buffer-substring-no-properties
3152 (point) (+ (point) len))
3153 coding)))))
3154
3155 (defun ispell-process-line (string shift)
3156 "Send STRING, a line of text, to ispell and processes the result.
3157 This will modify the buffer for spelling errors.
3158 Requires variables ISPELL-START and ISPELL-END to be defined in its
3159 dynamic scope.
3160 Returns the sum SHIFT due to changes in word replacements."
3161 ;;(declare special ispell-start ispell-end)
3162 (let (poss accept-list)
3163 (if (not (numberp shift))
3164 (setq shift 0))
3165 ;; send string to spell process and get input.
3166 (ispell-send-string string)
3167 (while (progn
3168 (ispell-accept-output)
3169 ;; Last item of output contains a blank line.
3170 (not (string= "" (car ispell-filter)))))
3171 ;; parse all inputs from the stream one word at a time.
3172 ;; Place in FIFO order and remove the blank item.
3173 (setq ispell-filter (nreverse (cdr ispell-filter)))
3174 (while (and (not ispell-quit) ispell-filter)
3175 ;; get next word, accounting for accepted words and start shifts
3176 (setq poss (ispell-parse-output (car ispell-filter)
3177 accept-list shift))
3178 (if (and poss (listp poss)) ; spelling error occurred.
3179 ;; Whenever we have misspellings, we can change
3180 ;; the buffer. Keep boundaries as markers.
3181 ;; Markers can move with highlighting! This destroys
3182 ;; end of region markers line-end and ispell-region-end
3183 (let ((word-start
3184 (copy-marker (+ ispell-start ispell-offset (car (cdr poss)))))
3185 (word-len (length (car poss)))
3186 (line-end (copy-marker ispell-end))
3187 (line-start (copy-marker ispell-start))
3188 recheck-region replace)
3189 (goto-char word-start)
3190 ;; Adjust the horizontal scroll & point
3191 (ispell-horiz-scroll)
3192 (goto-char (+ word-len word-start))
3193 (ispell-horiz-scroll)
3194 (goto-char word-start)
3195 (ispell-horiz-scroll)
3196
3197 ;; Alignment cannot be tracked and this error will occur when
3198 ;; `query-replace' makes multiple corrections on the starting line.
3199 (or (ispell-looking-at (car poss))
3200 ;; This occurs due to filter pipe problems
3201 (error (concat "Ispell misalignment: word "
3202 "`%s' point %d; probably incompatible versions")
3203 (car poss) (marker-position word-start)))
3204 ;; ispell-cmd-loop can go recursive & change buffer
3205 (if ispell-keep-choices-win
3206 (setq replace (ispell-command-loop
3207 (car (cdr (cdr poss)))
3208 (car (cdr (cdr (cdr poss))))
3209 (car poss) (marker-position word-start)
3210 (+ word-len (marker-position word-start))))
3211 (save-window-excursion
3212 (setq replace (ispell-command-loop
3213 (car (cdr (cdr poss)))
3214 (car (cdr (cdr (cdr poss))))
3215 (car poss) (marker-position word-start)
3216 (+ word-len (marker-position word-start))))))
3217
3218 (goto-char word-start)
3219 ;; Recheck when query replace edit changes misspelled word.
3220 ;; Error in tex mode when a potential math mode change exists.
3221 (if (and replace (listp replace) (= 2 (length replace)))
3222 (if (and (eq ispell-parser 'tex)
3223 (string-match "[\\\\][]()[]\\|\\\\begin\\|\\$"
3224 (regexp-quote string)))
3225 (error
3226 "Don't start query replace on a line with math characters"
3227 )
3228 (set-marker line-end (point))
3229 (setq ispell-filter nil
3230 recheck-region t)))
3231
3232 ;; insert correction if needed
3233 (cond
3234 ((or (null replace)
3235 (equal 0 replace)) ; ACCEPT/INSERT
3236 (if (equal 0 replace) ; BUFFER-LOCAL DICT ADD
3237 (ispell-add-per-file-word-list (car poss)))
3238 ;; do not recheck accepted word on this line
3239 (setq accept-list (cons (car poss) accept-list)))
3240 (t ; replacement word selected or entered
3241 (delete-region (point) (+ word-len (point)))
3242 (if (not (listp replace))
3243 (progn
3244 (ispell-insert-word replace) ; insert dictionary word
3245 (ispell-send-replacement (car poss) replace)
3246 (setq accept-list (cons replace accept-list)))
3247 (let ((replace-word (car replace)))
3248 ;; Recheck hand entered replacement word
3249 (insert replace-word)
3250 (ispell-send-replacement (car poss) replace-word)
3251 (if (car (cdr replace))
3252 (save-window-excursion
3253 (delete-other-windows) ; to correctly show help.
3254 ;; Assume case-replace &
3255 ;; case-fold-search correct?
3256 (query-replace (car poss) (car replace) t)))
3257 (goto-char word-start)
3258 ;; do not recheck if already accepted
3259 (if (member replace-word accept-list)
3260 (setq accept-list (cons replace-word accept-list)
3261 replace replace-word)
3262 (let ((region-end (copy-marker ispell-region-end)))
3263 (setq recheck-region ispell-filter
3264 ispell-filter nil ; save filter
3265 shift 0 ; already accounted
3266 shift (ispell-region
3267 word-start
3268 (+ word-start (length replace-word))
3269 t shift))
3270 (if (null shift) ; quitting check.
3271 (setq shift 0))
3272 (set-marker ispell-region-end region-end)
3273 (set-marker region-end nil)
3274 (setq ispell-filter recheck-region
3275 recheck-region nil
3276 replace replace-word)))))
3277
3278 (setq shift (+ shift (- (length replace) word-len)))
3279
3280 ;; Move line-start across word...
3281 ;; new shift function does this now...
3282 ;;(set-marker line-start (+ line-start
3283 ;; (- (length replace)
3284 ;; (length (car poss)))))
3285 ))
3286 (if (not ispell-quit)
3287 ;; FIXME: remove redundancy with identical code above.
3288 (let (message-log-max)
3289 (message
3290 "Continuing spelling check using %s with %s dictionary..."
3291 (file-name-nondirectory ispell-program-name)
3292 (or ispell-current-dictionary "default"))))
3293 (sit-for 0)
3294 (setq ispell-start (marker-position line-start)
3295 ispell-end (marker-position line-end))
3296 ;; Adjust markers when end of region lost from highlighting.
3297 (if (and (not recheck-region)
3298 (< ispell-end (+ word-start word-len)))
3299 (setq ispell-end (+ word-start word-len)))
3300 (if (= word-start ispell-region-end)
3301 (set-marker ispell-region-end (+ word-start word-len)))
3302 ;; going out of scope - unneeded
3303 (set-marker line-start nil)
3304 (set-marker word-start nil)
3305 (set-marker line-end nil)))
3306 ;; finished with misspelling!
3307 (setq ispell-filter (cdr ispell-filter)))
3308 shift))
3309
3310
3311 ;;;###autoload
3312 (defun ispell-comments-and-strings ()
3313 "Check comments and strings in the current buffer for spelling errors."
3314 (interactive)
3315 (goto-char (point-min))
3316 (let (state done)
3317 (while (not done)
3318 (setq done t)
3319 (setq state (parse-partial-sexp (point) (point-max)
3320 nil nil state 'syntax-table))
3321 (if (or (nth 3 state) (nth 4 state))
3322 (let ((start (point)))
3323 (setq state (parse-partial-sexp start (point-max)
3324 nil nil state 'syntax-table))
3325 (if (or (nth 3 state) (nth 4 state))
3326 (error "Unterminated string or comment"))
3327 (save-excursion
3328 (setq done (not (ispell-region start (point))))))))))
3329
3330
3331 ;;;###autoload
3332 (defun ispell-buffer ()
3333 "Check the current buffer for spelling errors interactively."
3334 (interactive)
3335 (ispell-region (point-min) (point-max)))
3336
3337
3338 ;;;###autoload
3339 (defun ispell-continue ()
3340 "Continue a halted spelling session beginning with the current word."
3341 (interactive)
3342 (if (not (marker-position ispell-region-end))
3343 (message "No session to continue. Use 'X' command when checking!")
3344 (if (not (equal (marker-buffer ispell-region-end) (current-buffer)))
3345 (message "Must continue ispell from buffer %s"
3346 (buffer-name (marker-buffer ispell-region-end)))
3347 (ispell-region
3348 ;; find beginning of current word:
3349 (car (cdr (ispell-get-word t)))
3350 (marker-position ispell-region-end)))))
3351
3352
3353 ;;; Horizontal scrolling
3354 (defun ispell-horiz-scroll ()
3355 "Place point within the horizontal visibility of its window area."
3356 (if truncate-lines ; display truncating lines?
3357 ;; See if display needs to be scrolled.
3358 (let ((column (- (current-column) (max (window-hscroll) 1))))
3359 (if (and (< column 0) (> (window-hscroll) 0))
3360 (scroll-right (max (- column) 10))
3361 (if (>= column (- (window-width) 2))
3362 (scroll-left (max (- column (window-width) -3) 10)))))))
3363
3364
3365 ;;; Interactive word completion.
3366 ;; Forces "previous-word" processing. Do we want to make this selectable?
3367
3368 ;;;###autoload
3369 (defun ispell-complete-word (&optional interior-frag)
3370 "Try to complete the word before or under point (see `lookup-words').
3371 If optional INTERIOR-FRAG is non-nil then the word may be a character
3372 sequence inside of a word.
3373
3374 Standard ispell choices are then available."
3375 (interactive "P")
3376 (let ((cursor-location (point))
3377 (case-fold-search-val case-fold-search)
3378 (word (ispell-get-word nil "\\*")) ; force "previous-word" processing.
3379 start end possibilities replacement)
3380 (setq start (car (cdr word))
3381 end (car (cdr (cdr word)))
3382 word (car word)
3383 possibilities
3384 (or (string= word "") ; Will give you every word
3385 (lookup-words (concat (and interior-frag "*") word
3386 (if (or interior-frag (null ispell-look-p))
3387 "*"))
3388 (or ispell-complete-word-dict
3389 ispell-alternate-dictionary))))
3390 (cond ((eq possibilities t)
3391 (message "No word to complete"))
3392 ((null possibilities)
3393 (message "No match for \"%s\"" word))
3394 (t ; There is a modification...
3395 (setq case-fold-search nil) ; Try and respect case of word.
3396 (cond
3397 ((string-equal (upcase word) word)
3398 (setq possibilities (mapcar 'upcase possibilities)))
3399 ((eq (upcase (aref word 0)) (aref word 0))
3400 (setq possibilities (mapcar (function
3401 (lambda (pos)
3402 (if (eq (aref word 0) (aref pos 0))
3403 pos
3404 (capitalize pos))))
3405 possibilities))))
3406 (setq case-fold-search case-fold-search-val)
3407 (save-window-excursion
3408 (setq replacement
3409 (ispell-command-loop possibilities nil word start end)))
3410 (cond
3411 ((equal 0 replacement) ; BUFFER-LOCAL ADDITION
3412 (ispell-add-per-file-word-list word))
3413 (replacement ; REPLACEMENT WORD
3414 (delete-region start end)
3415 (setq word (if (atom replacement) replacement (car replacement))
3416 cursor-location (+ (- (length word) (- end start))
3417 cursor-location))
3418 (ispell-insert-word word)
3419 (if (not (atom replacement)) ; recheck spelling of replacement.
3420 (progn
3421 (goto-char cursor-location)
3422 (ispell-word nil t)))))
3423 (if (get-buffer ispell-choices-buffer)
3424 (kill-buffer ispell-choices-buffer))))
3425 (ispell-pdict-save ispell-silently-savep)
3426 (goto-char cursor-location)))
3427
3428
3429 ;;;###autoload
3430 (defun ispell-complete-word-interior-frag ()
3431 "Completes word matching character sequence inside a word."
3432 (interactive)
3433 (ispell-complete-word t))
3434
3435
3436 ;;;###autoload
3437 (defun ispell ()
3438 "Interactively check a region or buffer for spelling errors.
3439 If `transient-mark-mode' is on, and a region is active, spell-check
3440 that region. Otherwise spell-check the buffer.
3441
3442 Ispell dictionaries are not distributed with Emacs. If you are
3443 looking for a dictionary, please see the distribution of the GNU ispell
3444 program, or do an Internet search; there are various dictionaries
3445 available on the net."
3446 (interactive)
3447 (if (and (boundp 'transient-mark-mode) transient-mark-mode
3448 (boundp 'mark-active) mark-active)
3449 (ispell-region (region-beginning) (region-end))
3450 (ispell-buffer)))
3451
3452
3453 ;;; **********************************************************************
3454 ;;; Ispell Minor Mode
3455 ;;; **********************************************************************
3456
3457 (defvar ispell-minor-keymap
3458 (let ((map (make-sparse-keymap)))
3459 (define-key map " " 'ispell-minor-check)
3460 (define-key map "\r" 'ispell-minor-check)
3461 map)
3462 "Keymap used for Ispell minor mode.")
3463
3464 ;;;###autoload
3465 (define-minor-mode ispell-minor-mode
3466 "Toggle last-word spell checking (Ispell minor mode).
3467 With a prefix argument ARG, enable Ispell minor mode if ARG is
3468 positive, and disable it otherwise. If called from Lisp, enable
3469 the mode if ARG is omitted or nil.
3470
3471 Ispell minor mode is a buffer-local mior mode. When enabled,
3472 typing SPC or RET warns you if the previous word is incorrectly
3473 spelled.
3474
3475 All the buffer-local variables and dictionaries are ignored. To
3476 read them into the running ispell process, type \\[ispell-word]
3477 SPC.
3478
3479 For spell-checking \"on the fly\", not just after typing SPC or
3480 RET, use `flyspell-mode'."
3481 nil " Spell" ispell-minor-keymap)
3482
3483 (defun ispell-minor-check ()
3484 "Check previous word then continue with the normal binding of this key.
3485 Don't check previous word when character before point is a space or newline.
3486 Don't read buffer-local settings or word lists."
3487 (interactive "*")
3488 (let ((ispell-minor-mode nil)
3489 (ispell-check-only t)
3490 (last-char (char-after (1- (point)))))
3491 (command-execute (key-binding (this-command-keys)))
3492 (if (not (or (eq last-char ?\ ) (eq last-char ?\n)
3493 (and ispell-skip-html (eq last-char ?>))
3494 (and ispell-skip-html (eq last-char ?\;))))
3495 (ispell-word nil t))))
3496
3497
3498 ;;; **********************************************************************
3499 ;;; Ispell Message
3500 ;;; **********************************************************************
3501
3502 (defvar ispell-message-text-end
3503 (mapconcat (function identity)
3504 '(
3505 ;; Don't spell check signatures
3506 "^-- $"
3507 ;; Matches PostScript files.
3508 ;;"^%!PS-Adobe-[123].0"
3509 ;; Matches uuencoded text
3510 ;;"^begin [0-9][0-9][0-9] .*\nM.*\nM.*\nM"
3511 ;; Matches shell files (especially auto-decoding)
3512 "^#! /bin/[ck]?sh"
3513 ;; Matches context difference listing
3514 "\\(\\(^cd .*\n\\)?diff -c .*\\)?\n\\*\\*\\* .*\n--- .*\n\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*"
3515 ;; Matches unidiff difference listing
3516 "\\(diff -u .*\\)?\n--- .*\n\\+\\+\\+ .*\n@@ [-+][0-9]+,[0-9]+ [-+][0-9]+,[0-9]+ @@"
3517 ;; Matches reporter.el bug report
3518 "^current state:\n==============\n"
3519 ;; Matches commonly used "cut" boundaries
3520 "^\\(- \\)?[-=_]+\\s ?\\(cut here\\|Environment Follows\\)")
3521 "\\|")
3522 "*End of text which will be checked in `ispell-message'.
3523 If it is a string, limit at first occurrence of that regular expression.
3524 Otherwise, it must be a function which is called to get the limit.")
3525 (put 'ispell-message-text-end 'risky-local-variable t)
3526
3527
3528 (defun ispell-mime-multipartp (&optional limit)
3529 "Return multipart message start boundary or nil if none."
3530 ;; caller must ensure `case-fold-search' is set to `t'
3531 (and
3532 (re-search-forward
3533 "Content-Type: *multipart/\\([^ \t\n]*;[ \t]*[\n]?[ \t]*\\)+boundary="
3534 limit t)
3535 (let (boundary)
3536 (if (looking-at "\"")
3537 (let (start)
3538 (forward-char)
3539 (setq start (point))
3540 (while (not (looking-at "\""))
3541 (forward-char 1))
3542 (setq boundary (buffer-substring-no-properties start (point))))
3543 (let ((start (point)))
3544 (while (looking-at "[-0-9a-zA-Z'()+_,./:=?]")
3545 (forward-char))
3546 (setq boundary (buffer-substring-no-properties start (point)))))
3547 (if (< (length boundary) 1)
3548 (setq boundary nil)
3549 (concat "--" boundary)))))
3550
3551
3552 (defun ispell-mime-skip-part (boundary)
3553 "Move point across header, or entire MIME part if message is encoded.
3554 All specified types except `7bit' `8bit' and `quoted-printable' are considered
3555 encoded and therefore skipped. See rfc 1521, 2183, ...
3556 If no boundary is given, then entire message is skipped.
3557
3558 This starts one line ABOVE the MIME content messages, on the boundary marker,
3559 for operation with the generic region-skipping code.
3560 This places new MIME boundaries into variable `ispell-checking-message'."
3561 (forward-line) ; skip over boundary to headers
3562 (let ((save-case-fold-search case-fold-search)
3563 (continuep t)
3564 textp)
3565 (setq case-fold-search t
3566 ispell-skip-html nil)
3567 (while continuep
3568 (setq continuep nil)
3569 (if (looking-at "Content-Type: *text/")
3570 (progn
3571 (goto-char (match-end 0))
3572 (if (looking-at "html")
3573 (setq ispell-skip-html t))
3574 (setq textp t
3575 continuep t)
3576 (re-search-forward "\\(.*;[ \t]*[\n]\\)*.*$" nil t)
3577 (forward-line)))
3578 (if (looking-at "Content-Transfer-Encoding: *\\([^ \t\n]*\\)")
3579 (let ((match (buffer-substring (match-beginning 1) (match-end 1))))
3580 (setq textp (member (upcase match)
3581 ;; only spell check the following encodings:
3582 '("7BIT" "8BIT" "QUOTED-PRINTABLE" "BINARY"))
3583 continuep t)
3584 (goto-char (match-end 0))
3585 (re-search-forward "\\(.*;[ \t]*[\n]\\)*.*$" nil t)
3586 (forward-line)))
3587 ;; hierarchical boundary definition
3588 (if (looking-at "Content-Type: *multipart/")
3589 (let ((new-boundary (ispell-mime-multipartp)))
3590 (if (string-match new-boundary boundary)
3591 (setq continuep t)
3592 ;; first pass redefine skip function to include new boundary
3593 ;;(re-search-backward boundary nil t)
3594 (forward-line)
3595 (setq ispell-checking-message
3596 (cons
3597 (list new-boundary 'ispell-mime-skip-part new-boundary)
3598 (if (eq t ispell-checking-message) nil
3599 ispell-checking-message))
3600 textp t
3601 continuep t)))
3602 ;; Skip all MIME headers that don't affect spelling
3603 (if (looking-at "Content-[^ \t]*: *\\(.*;[ \t]*[\n]\\)*.*$")
3604 (progn
3605 (setq continuep t)
3606 (goto-char (match-end 0))
3607 (forward-line)))))
3608
3609 (setq case-fold-search save-case-fold-search)
3610 (if textp
3611 (point)
3612 ;; encoded message. Skip to boundary, or entire message.
3613 (if (not boundary)
3614 (goto-char (point-max))
3615 (re-search-forward boundary nil t)
3616 (beginning-of-line)
3617 (point)))))
3618
3619
3620 ;;;###autoload
3621 (defun ispell-message ()
3622 "Check the spelling of a mail message or news post.
3623 Don't check spelling of message headers except the Subject field.
3624 Don't check included messages.
3625
3626 To abort spell checking of a message region and send the message anyway,
3627 use the `x' command. (Any subsequent regions will be checked.)
3628 The `X' command aborts the message send so that you can edit the buffer.
3629
3630 To spell-check whenever a message is sent, include the appropriate lines
3631 in your .emacs file:
3632 (add-hook 'message-send-hook 'ispell-message) ;; GNUS 5
3633 (add-hook 'news-inews-hook 'ispell-message) ;; GNUS 4
3634 (add-hook 'mail-send-hook 'ispell-message)
3635 (add-hook 'mh-before-send-letter-hook 'ispell-message)
3636
3637 You can bind this to the key C-c i in GNUS or mail by adding to
3638 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
3639 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))"
3640 (interactive)
3641 (save-excursion
3642 (goto-char (point-min))
3643 (let* (boundary mimep
3644 (ispell-skip-region-alist-save ispell-skip-region-alist)
3645 ;; Nil when message came from outside (eg calling Emacs as editor)
3646 ;; Non-nil marker of end of headers.
3647 (internal-messagep
3648 (re-search-forward
3649 (concat "^" (regexp-quote mail-header-separator) "$") nil t))
3650 (end-of-headers ; Start of body.
3651 (copy-marker
3652 (or internal-messagep
3653 (re-search-forward "^$" nil t)
3654 (point-min))))
3655 (limit (copy-marker ; End of region we will spell check.
3656 (cond
3657 ((not ispell-message-text-end) (point-max))
3658 ((char-or-string-p ispell-message-text-end)
3659 (if (re-search-forward ispell-message-text-end nil t)
3660 (match-beginning 0)
3661 (point-max)))
3662 (t (min (point-max) (funcall ispell-message-text-end))))))
3663 (default-prefix ; Vanilla cite prefix (just used for cite-regexp)
3664 (if (and (boundp 'mail-yank-prefix) mail-yank-prefix)
3665 (ispell-non-empty-string mail-yank-prefix)
3666 " \\|\t"))
3667 (cite-regexp ;Prefix of quoted text
3668 (cond
3669 ((functionp 'sc-cite-regexp) ; sc 3.0
3670 (with-no-warnings
3671 (concat "\\(" (sc-cite-regexp) "\\)" "\\|"
3672 (ispell-non-empty-string sc-reference-tag-string))))
3673 ((boundp 'sc-cite-regexp) ; sc 2.3
3674 (concat "\\(" sc-cite-regexp "\\)" "\\|"
3675 (with-no-warnings
3676 (ispell-non-empty-string sc-reference-tag-string))))
3677 ((or (equal major-mode 'news-reply-mode) ;GNUS 4 & below
3678 (equal major-mode 'message-mode)) ;GNUS 5
3679 (concat "In article <" "\\|"
3680 "[^,;&+=\n]+ <[^,;&+=]+> writes:" "\\|"
3681 (with-no-warnings message-cite-prefix-regexp)
3682 "\\|"
3683 default-prefix))
3684 ((equal major-mode 'mh-letter-mode) ; mh mail message
3685 (concat "[^,;&+=\n]+ writes:" "\\|"
3686 (with-no-warnings
3687 (ispell-non-empty-string mh-ins-buf-prefix))))
3688 ((not internal-messagep) ; Assume nn sent us this message.
3689 (concat "In [a-zA-Z.]+ you write:" "\\|"
3690 "In <[^,;&+=]+> [^,;&+=]+ writes:" "\\|"
3691 " *> *"))
3692 ((boundp 'vm-included-text-prefix) ; VM mail message
3693 (concat "[^,;&+=\n]+ writes:" "\\|"
3694 (ispell-non-empty-string vm-included-text-prefix)))
3695 (t default-prefix)))
3696 (ispell-skip-region-alist
3697 (cons (list (concat "^\\(" cite-regexp "\\)")
3698 (function forward-line))
3699 ispell-skip-region-alist))
3700 (old-case-fold-search case-fold-search)
3701 (dictionary-alist ispell-message-dictionary-alist)
3702 (ispell-checking-message t))
3703
3704 ;; Select dictionary for message
3705 (or (local-variable-p 'ispell-local-dictionary (current-buffer))
3706 (while dictionary-alist
3707 (goto-char (point-min))
3708 (if (re-search-forward (car (car dictionary-alist))
3709 end-of-headers t)
3710 (setq ispell-local-dictionary (cdr (car dictionary-alist))
3711 dictionary-alist nil)
3712 (setq dictionary-alist (cdr dictionary-alist)))))
3713
3714 (unwind-protect
3715 (progn
3716 ;; Spell check any original Subject:
3717 (goto-char (point-min))
3718 (setq case-fold-search t
3719 mimep (re-search-forward "MIME-Version:" end-of-headers t))
3720 (goto-char (point-min))
3721 (if (re-search-forward "^Subject: *" end-of-headers t)
3722 (progn
3723 (goto-char (match-end 0))
3724 (if (and (not (looking-at ".*Re\\>"))
3725 (not (looking-at "\\[")))
3726 (progn
3727 (setq case-fold-search old-case-fold-search)
3728 (ispell-region (point)
3729 (progn ;Tab-initiated continuation lns.
3730 (end-of-line)
3731 (while (looking-at "\n[ \t]")
3732 (end-of-line 2))
3733 (point)))))))
3734 (if mimep
3735 (progn
3736 (goto-char (point-min))
3737 (setq boundary (ispell-mime-multipartp end-of-headers))))
3738 ;; Adjust message limit to MIME message if necessary.
3739 (and boundary
3740 (re-search-forward (concat boundary "--") nil t)
3741 (re-search-backward boundary nil t)
3742 (< (point) (marker-position limit))
3743 (set-marker limit (point)))
3744 (goto-char (point-min))
3745 ;; Select type or skip checking if this is a non-multipart message
3746 ;; Point moved to end of buffer if region is encoded.
3747 (when (and mimep (not boundary))
3748 (goto-char (point-min))
3749 (re-search-forward "Content-[^ \t]*:" end-of-headers t)
3750 (forward-line -1) ; following fn starts one line above
3751 (ispell-mime-skip-part nil)
3752 ;; if message-text-end region, limit may be less than point.
3753 (if (> (point) limit)
3754 (set-marker limit (point))))
3755 (goto-char (max end-of-headers (point)))
3756 (forward-line 1)
3757 (setq case-fold-search old-case-fold-search)
3758 ;; Define MIME regions to skip.
3759 (if boundary
3760 (setq ispell-checking-message
3761 (list (list boundary 'ispell-mime-skip-part boundary))))
3762 (ispell-region (point) limit))
3763 (set-marker end-of-headers nil)
3764 (set-marker limit nil)
3765 (setq ispell-skip-region-alist ispell-skip-region-alist-save
3766 ispell-skip-html nil
3767 case-fold-search old-case-fold-search)))))
3768
3769
3770 (defun ispell-non-empty-string (string)
3771 (if (or (not string) (string-equal string ""))
3772 "\\'\\`" ; An unmatchable string if string is null.
3773 (regexp-quote string)))
3774
3775
3776 ;;; **********************************************************************
3777 ;;; Buffer Local Functions
3778 ;;; **********************************************************************
3779
3780
3781 (defun ispell-accept-buffer-local-defs ()
3782 "Load all buffer-local information, restarting Ispell when necessary."
3783 (ispell-buffer-local-dict) ; May kill ispell-process.
3784 (ispell-buffer-local-words) ; Will initialize ispell-process.
3785 (ispell-buffer-local-parsing))
3786
3787
3788 (defun ispell-buffer-local-parsing ()
3789 "Place Ispell into parsing mode for this buffer.
3790 Overrides the default parsing mode.
3791 Includes Latex/Nroff modes and extended character mode."
3792 ;; (ispell-init-process) must already be called.
3793 (ispell-send-string "!\n") ; Put process in terse mode.
3794 ;; We assume all major modes with "tex-mode" in them should use latex parsing
3795 ;; When exclusively checking comments, set to raw text mode (nroff).
3796 (if (and (not (eq 'exclusive ispell-check-comments))
3797 (or (and (eq ispell-parser 'use-mode-name)
3798 (string-match "[Tt][Ee][Xx]-mode"
3799 (symbol-name major-mode)))
3800 (eq ispell-parser 'tex)))
3801 (progn
3802 (ispell-send-string "+\n") ; set ispell mode to tex
3803 (if (not (eq ispell-parser 'tex))
3804 (set (make-local-variable 'ispell-parser) 'tex)))
3805 (ispell-send-string "-\n")) ; set mode to normal (nroff)
3806 ;; If needed, test for SGML & HTML modes and set a buffer local nil/t value.
3807 (if (and ispell-skip-html (not (eq ispell-skip-html t)))
3808 (setq ispell-skip-html
3809 (not (null (string-match "sgml\\|html\\|xml"
3810 (downcase (symbol-name major-mode)))))))
3811 ;; Set default extended character mode for given buffer, if any.
3812 (let ((extended-char-mode (ispell-get-extended-character-mode)))
3813 (if extended-char-mode
3814 (ispell-send-string (concat extended-char-mode "\n"))))
3815 ;; Set buffer-local parsing mode and extended character mode, if specified.
3816 (save-excursion
3817 (goto-char (point-max))
3818 ;; Uses last occurrence of ispell-parsing-keyword
3819 (if (search-backward ispell-parsing-keyword nil t)
3820 (let ((end (point-at-eol))
3821 string)
3822 (search-forward ispell-parsing-keyword)
3823 (while (re-search-forward " *\\([^ \"]+\\)" end t)
3824 ;; space separated definitions.
3825 (setq string (downcase (match-string-no-properties 1)))
3826 (cond ((and (string-match "latex-mode" string)
3827 (not (eq 'exclusive ispell-check-comments)))
3828 (ispell-send-string "+\n~tex\n"))
3829 ((string-match "nroff-mode" string)
3830 (ispell-send-string "-\n~nroff\n"))
3831 ((string-match "~" string) ; Set extended character mode.
3832 (ispell-send-string (concat string "\n")))
3833 (t (message "Invalid Ispell Parsing argument!")
3834 (sit-for 2))))))))
3835
3836
3837 ;; Can kill the current ispell process
3838
3839 (defun ispell-buffer-local-dict (&optional no-reload)
3840 "Initializes local dictionary and local personal dictionary.
3841 If optional NO-RELOAD is non-nil, do not make any dictionary reloading.
3842 When a dictionary is defined in the buffer (see variable
3843 `ispell-dictionary-keyword'), it will override the local setting
3844 from \\[ispell-change-dictionary].
3845 Both should not be used to define a buffer-local dictionary."
3846 (save-excursion
3847 (goto-char (point-min))
3848 (let (end)
3849 ;; Override the local variable definition.
3850 ;; Uses last occurrence of ispell-dictionary-keyword.
3851 (goto-char (point-max))
3852 (unless ispell-local-dictionary-overridden
3853 (if (search-backward ispell-dictionary-keyword nil t)
3854 (progn
3855 (search-forward ispell-dictionary-keyword)
3856 (setq end (point-at-eol))
3857 (if (re-search-forward " *\\([^ \"]+\\)" end t)
3858 (setq ispell-local-dictionary
3859 (match-string-no-properties 1))))))
3860 (goto-char (point-max))
3861 (if (search-backward ispell-pdict-keyword nil t)
3862 (progn
3863 (search-forward ispell-pdict-keyword)
3864 (setq end (point-at-eol))
3865 (if (re-search-forward " *\\([^ \"]+\\)" end t)
3866 (setq ispell-local-pdict
3867 (match-string-no-properties 1)))))))
3868 (unless no-reload
3869 ;; Reload if new dictionary (maybe the personal one) defined.
3870 (ispell-internal-change-dictionary)))
3871
3872
3873 (defun ispell-buffer-local-words ()
3874 "Load the buffer-local dictionary in the current buffer."
3875 ;; If there's an existing ispell process that's wrong for this use,
3876 ;; kill it.
3877 (if (and ispell-buffer-local-name
3878 (not (equal ispell-buffer-local-name (buffer-name))))
3879 (ispell-kill-ispell t))
3880 ;; Actually start a new ispell process, because we need
3881 ;; to send commands now to specify the local words to it.
3882 (ispell-init-process)
3883 (save-excursion
3884 (goto-char (point-min))
3885 (while (search-forward ispell-words-keyword nil t)
3886 (or ispell-buffer-local-name
3887 (setq ispell-buffer-local-name (buffer-name)))
3888 (let ((end (point-at-eol))
3889 (ispell-casechars (ispell-get-casechars))
3890 string)
3891 ;; buffer-local words separated by a space, and can contain
3892 ;; any character other than a space. Not rigorous enough.
3893 (while (re-search-forward " *\\([^ ]+\\)" end t)
3894 (setq string (match-string-no-properties 1))
3895 ;; This can fail when string contains a word with invalid chars.
3896 ;; Error handling needs to be added between ispell and Emacs.
3897 (if (and (< 1 (length string))
3898 (equal 0 (string-match ispell-casechars string)))
3899 (ispell-send-string (concat "@" string "\n"))))))))
3900
3901
3902 ;;; returns optionally adjusted region-end-point.
3903
3904 ;; If comment-padright is defined, newcomment must be loaded.
3905 (declare-function comment-add "newcomment" (arg))
3906
3907 (defun ispell-add-per-file-word-list (word)
3908 "Add WORD to the per-file word list."
3909 (or ispell-buffer-local-name
3910 (setq ispell-buffer-local-name (buffer-name)))
3911 (save-excursion
3912 (goto-char (point-min))
3913 (let (line-okay search done found)
3914 (while (not done)
3915 (let ((case-fold-search nil))
3916 (setq search (search-forward ispell-words-keyword nil 'move)
3917 found (or found search)
3918 line-okay (< (+ (length word) 1 ; 1 for space after word..
3919 (progn (end-of-line) (current-column)))
3920 fill-column)))
3921 (if (or (and search line-okay)
3922 (null search))
3923 (progn
3924 (setq done t)
3925 (if (null search)
3926 (progn
3927 (open-line 1)
3928 (unless found (newline))
3929 (insert (if comment-start
3930 (concat
3931 (if (fboundp 'comment-padright)
3932 ;; Try and use the proper comment marker,
3933 ;; e.g. ";;" rather than ";".
3934 (comment-padright comment-start
3935 (comment-add nil))
3936 comment-start)
3937 " ")
3938 "")
3939 ispell-words-keyword)
3940 (if (and comment-end (> (length comment-end) 0))
3941 (save-excursion
3942 (newline)
3943 (insert comment-end)))))
3944 (insert (concat " " word))))))))
3945
3946 (add-to-list 'debug-ignored-errors "^No word found to check!$")
3947
3948 (provide 'ispell)
3949
3950 \f
3951 ;;; LOCAL VARIABLES AND BUFFER-LOCAL VALUE EXAMPLES.
3952
3953 ;; Local Variable options:
3954 ;; mode: name(-mode)
3955 ;; eval: expression
3956 ;; local-variable: value
3957
3958 ;; The following sets the buffer local dictionary to `american' English
3959 ;; and spell checks only comments.
3960
3961 ;; Local Variables:
3962 ;; mode: emacs-lisp
3963 ;; comment-column: 40
3964 ;; ispell-check-comments: exclusive
3965 ;; ispell-local-dictionary: "american"
3966 ;; End:
3967
3968
3969 ;;; MORE EXAMPLES OF ISPELL BUFFER-LOCAL VALUES
3970
3971 ;; The following places this file in nroff parsing and extended char modes.
3972 ;; Local IspellParsing: nroff-mode ~nroff
3973 ;; Change IspellPersDict to IspellPersDict: to enable the following line.
3974 ;; Local IspellPersDict ~/.ispell_lisp
3975 ;; The following were automatically generated by ispell using the 'A' command:
3976 ; LocalWords: settable alist inews mh frag pdict Wildcards iconify arg tex kss
3977 ; LocalWords: alists minibuffer bufferp autoload loaddefs aff Dansk KOI SPC op
3978 ; LocalWords: Francais Nederlands charset autoloaded popup nonmenu regexp num
3979 ; LocalWords: AMStex hspace includeonly nocite epsfig displaymath eqnarray reg
3980 ; LocalWords: minipage modeline pers dict unhighlight buf grep sync prev inc
3981 ; LocalWords: fn oldot NB AIX msg init read's bufs pt cmd Quinlan eg
3982 ; LocalWords: uuencoded unidiff sc nn VM SGML eval IspellPersDict
3983 ; LocalWords: lns XEmacs HTML casechars Multibyte
3984
3985 ;;; ispell.el ends here