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