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