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