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