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