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