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