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