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