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