2
|
1 ;;; ispell.el --- spell checking using Ispell
|
|
2
|
|
3 ;; Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; Authors : Ken Stevens <k.stevens@ieee.org>
|
|
6 ;; Last Modified On: Tue Jun 13 12:05:28 EDT 1995
|
|
7 ;; Update Revision : 2.37
|
|
8 ;; Syntax : emacs-lisp
|
|
9 ;; Status : Release with 3.1.12+ ispell.
|
|
10 ;; Version : International Ispell Version 3.1 by Geoff Kuenning.
|
|
11 ;; Bug Reports : ispell-el-bugs@itcorp.com
|
|
12
|
|
13 ;; Note: version numbers and time stamp are not updated
|
|
14 ;; when this file is edited for release with GNU emacs.
|
|
15
|
|
16 ;; This file is part of XEmacs.
|
|
17
|
|
18 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
19 ;; under the terms of the GNU General Public License as published by
|
|
20 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
21 ;; any later version.
|
|
22
|
|
23 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
24 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
26 ;; General Public License for more details.
|
|
27
|
|
28 ;; You should have received a copy of the GNU General Public License
|
|
29 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
30 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
31 ;; 02111-1307, USA.
|
|
32
|
0
|
33 ;;; Commentary:
|
2
|
34
|
|
35 ;; INSTRUCTIONS
|
|
36 ;;
|
|
37 ;; This code contains a section of user-settable variables that you should
|
|
38 ;; inspect prior to installation. Look past the end of the history list.
|
|
39 ;; Set them up for your locale and the preferences of the majority of the
|
|
40 ;; users. Otherwise the users may need to set a number of variables
|
|
41 ;; themselves.
|
|
42 ;; You particularly may want to change the default dictionary for your
|
|
43 ;; country and language.
|
|
44 ;;
|
|
45 ;;
|
|
46 ;; To fully install this, add this file to your Emacs Lisp directory and
|
|
47 ;; compile it with M-X byte-compile-file. Then add the following to the
|
|
48 ;; appropriate init file:
|
|
49 ;;
|
|
50 ;; (autoload 'ispell-word "ispell"
|
|
51 ;; "Check the spelling of word in buffer." t)
|
|
52 ;; (global-set-key "\e$" 'ispell-word)
|
|
53 ;; (autoload 'ispell-region "ispell"
|
|
54 ;; "Check the spelling of region." t)
|
|
55 ;; (autoload 'ispell-buffer "ispell"
|
|
56 ;; "Check the spelling of buffer." t)
|
|
57 ;; (autoload 'ispell-complete-word "ispell"
|
|
58 ;; "Look up current word in dictionary and try to complete it." t)
|
|
59 ;; (autoload 'ispell-change-dictionary "ispell"
|
|
60 ;; "Change ispell dictionary." t)
|
|
61 ;; (autoload 'ispell-message "ispell"
|
|
62 ;; "Check spelling of mail message or news post.")
|
|
63 ;;
|
|
64 ;; Depending on the mail system you use, you may want to include these:
|
|
65 ;;
|
|
66 ;; (add-hook 'news-inews-hook 'ispell-message)
|
|
67 ;; (add-hook 'mail-send-hook 'ispell-message)
|
|
68 ;; (add-hook 'mh-before-send-letter-hook 'ispell-message)
|
|
69 ;;
|
|
70 ;;
|
|
71 ;; Ispell has a TeX parser and a nroff parser (the default).
|
|
72 ;; The parsing is controlled by the variable ispell-parser. Currently
|
|
73 ;; it is just a "toggle" between TeX and nroff, but if more parsers are
|
|
74 ;; added it will be updated. See the variable description for more info.
|
|
75 ;;
|
|
76 ;;
|
|
77 ;; TABLE OF CONTENTS
|
|
78 ;;
|
|
79 ;; ispell-word
|
|
80 ;; ispell-region
|
|
81 ;; ispell-buffer
|
|
82 ;; ispell-message
|
|
83 ;; ispell-continue
|
|
84 ;; ispell-complete-word
|
|
85 ;; ispell-complete-word-interior-frag
|
|
86 ;; ispell-change-dictionary
|
|
87 ;; ispell-kill-ispell
|
|
88 ;; ispell-pdict-save
|
|
89 ;;
|
|
90 ;;
|
|
91 ;; Commands in ispell-region:
|
|
92 ;; Character replacement: Replace word with choice. May query-replace.
|
|
93 ;; ' ': Accept word this time.
|
|
94 ;; 'i': Accept word and insert into private dictionary.
|
|
95 ;; 'a': Accept word for this session.
|
|
96 ;; 'A': Accept word and place in buffer-local dictionary.
|
|
97 ;; 'r': Replace word with typed-in value. Rechecked.
|
|
98 ;; 'R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
|
|
99 ;; '?': Show these commands
|
|
100 ;; 'x': Exit spelling buffer. Move cursor to original point.
|
|
101 ;; 'X': Exit spelling buffer. Leave cursor at the current point.
|
|
102 ;; 'q': Quit spelling session (Kills ispell process).
|
|
103 ;; 'l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
|
|
104 ;; 'u': Like 'i', but the word is lower-cased first.
|
|
105 ;; 'm': Like 'i', but allows one to include dictionary completion info.
|
|
106 ;; 'C-l': redraws screen
|
|
107 ;; 'C-r': recursive edit
|
|
108 ;; 'C-z': suspend emacs or iconify frame
|
|
109 ;;
|
|
110 ;; Buffer-Local features:
|
|
111 ;; There are a number of buffer-local features that can be used to customize
|
|
112 ;; ispell for the current buffer. This includes language dictionaries,
|
|
113 ;; personal dictionaries, parsing, and local word spellings. Each of these
|
|
114 ;; local customizations are done either through local variables, or by
|
|
115 ;; including the keyword and argument(s) at the end of the buffer (usually
|
|
116 ;; prefixed by the comment characters). See the end of this file for
|
|
117 ;; examples. The local keywords and variables are:
|
|
118 ;;
|
|
119 ;; ispell-dictionary-keyword language-dictionary
|
|
120 ;; uses local variable ispell-local-dictionary
|
|
121 ;; ispell-pdict-keyword personal-dictionary
|
|
122 ;; uses local variable ispell-local-pdict
|
|
123 ;; ispell-parsing-keyword mode-arg extended-char-arg
|
|
124 ;; ispell-words-keyword any number of local word spellings
|
|
125 ;;
|
|
126 ;;
|
|
127 ;; BUGS:
|
|
128 ;; Highlighting in version 19 still doesn't work on tty's.
|
|
129 ;; On some versions of emacs, growing the minibuffer fails.
|
|
130 ;;
|
|
131 ;; HISTORY
|
|
132 ;;
|
|
133 ;; Revision 2.38 1996/5/30 ethanb@phys.washington.edu
|
|
134 ;; Update ispell-message for gnus 5 (news-inews-hook => message-send-hook;
|
|
135 ;; different header for quoted message).
|
|
136 ;;
|
|
137 ;; Revision 2.37 1995/6/13 12:05:28 stevens
|
|
138 ;; Removed autoload from ispell-dictionary-alist. *choices* mode-line shows
|
|
139 ;; misspelled word. Block skip for pgp & forwarded messages added.
|
|
140 ;; RMS: the autoload changes had problems and I removed them.
|
|
141 ;;
|
|
142 ;; Revision 2.36 1995/2/6 17:39:38 stevens
|
|
143 ;; Properly adjust screen with different ispell-choices-win-default-height
|
|
144 ;; settings. Skips SGML entity references.
|
|
145 ;;
|
|
146 ;; Revision 2.35 1995/1/13 14:16:46 stevens
|
|
147 ;; Skips SGML tags, ispell-change-dictionary fix for add-hook, assure personal
|
|
148 ;; dictionary is saved when called from the menu
|
|
149 ;;
|
|
150 ;; Revision 2.34 1994/12/08 13:17:41 stevens
|
|
151 ;; Interaction corrected to function with all 3.1 ispell versions.
|
|
152 ;;
|
|
153 ;; Revision 2.33 1994/11/24 02:31:20 stevens
|
|
154 ;; Repaired bug introduced in 2.32 that corrupts buffers when correcting.
|
|
155 ;; Improved buffer scrolling. Nondestructive buffer selections allowed.
|
|
156 ;;
|
|
157 ;; Revision 2.32 1994/10/31 21:10:08 geoff
|
|
158 ;; Many revisions accepted from RMS/FSF. I think (though I don't know) that
|
|
159 ;; this represents an 'official' version.
|
|
160 ;;
|
|
161 ;; Revision 2.31 1994/5/31 10:18:17 stevens
|
|
162 ;; Repaired comments. buffer-local commands executed in `ispell-word' now.
|
|
163 ;; German dictionary described for extended character mode. Dict messages.
|
|
164 ;;
|
|
165 ;; Revision 2.30 1994/5/20 22:18:36 stevens
|
|
166 ;; Continue ispell from ispell-word, C-z functionality fixed.
|
|
167 ;;
|
|
168 ;; Revision 2.29 1994/5/12 09:44:33 stevens
|
|
169 ;; Restored ispell-use-ptys-p, ispell-message aborts sends with interrupt.
|
|
170 ;; defined fn ispell
|
|
171 ;;
|
|
172 ;; Revision 2.28 1994/4/28 16:24:40 stevens
|
|
173 ;; Window checking when ispell-message put on gnus-inews-article-hook jwz.
|
|
174 ;; prefixed ispell- to highlight functions and horiz-scroll fn.
|
|
175 ;; Try and respect case of word in ispell-complete-word.
|
|
176 ;; Ignore non-char events. Ispell-use-ptys-p commented out. Lucid menu.
|
|
177 ;; Better interrupt handling. ispell-message improvements from Ethan.
|
|
178 ;;
|
|
179 ;; Revision 2.27
|
|
180 ;; version 18 explicit C-g handling disabled as it didn't work. Added
|
|
181 ;; ispell-extra-args for ispell customization (jwz)
|
|
182 ;;
|
|
183 ;; Revision 2.26 1994/2/15 16:11:14 stevens
|
|
184 ;; name changes for copyright assignment. Added word-frags in complete-word.
|
|
185 ;; Horizontal scroll (John Conover). Query-replace matches words now. bugs.
|
|
186 ;;
|
|
187 ;; Revision 2.25
|
|
188 ;; minor mods, upgraded ispell-message
|
|
189 ;;
|
|
190 ;; Revision 2.24
|
|
191 ;; query-replace more robust, messages, defaults, ispell-change-dict.
|
|
192 ;;
|
|
193 ;; Revision 2.23 1993/11/22 23:47:03 stevens
|
|
194 ;; ispell-message, Fixed highlighting, added menu-bar, fixed ispell-help, ...
|
|
195 ;;
|
|
196 ;; Revision 2.22
|
|
197 ;; Added 'u' command. Fixed default in ispell-local-dictionary.
|
|
198 ;; fixed affix rules display. Tib skipping more robust. Contributions by
|
|
199 ;; Per Abraham (parser selection), Denis Howe, and Eberhard Mattes.
|
|
200 ;;
|
|
201 ;; Revision 2.21 1993/06/30 14:09:04 stevens
|
|
202 ;; minor bugs. (nroff word skipping fixed)
|
|
203 ;;
|
|
204 ;; Revision 2.20 1993/06/30 14:09:04 stevens
|
|
205 ;;
|
|
206 ;; Debugging and contributions by: Boris Aronov, Rik Faith, Chris Moore,
|
|
207 ;; Kevin Rodgers, Malcolm Davis.
|
|
208 ;; Particular thanks to Michael Lipp, Jamie Zawinski, Phil Queinnec
|
|
209 ;; and John Heidemann for suggestions and code.
|
|
210 ;; Major update including many tweaks.
|
|
211 ;; Many changes were integrations of suggestions.
|
|
212 ;; lookup-words rehacked to use call-process (Jamie).
|
|
213 ;; ispell-complete-word rehacked to be compatible with the rest of the
|
|
214 ;; system for word searching and to include multiple wildcards,
|
|
215 ;; and it's own dictionary.
|
|
216 ;; query-replace capability added. New options 'X', 'R', and 'A'.
|
|
217 ;; buffer-local modes for dictionary, word-spelling, and formatter-parsing.
|
|
218 ;; Many random bugs, like commented comments being skipped, fix to
|
|
219 ;; keep-choices-win, fix for math mode, added pipe mode choice,
|
|
220 ;; fixed 'q' command, ispell-word checks previous word and leave cursor
|
|
221 ;; in same location. Fixed tib code which could drop spelling regions.
|
|
222 ;; Cleaned up setq calls for efficiency. Gave more context on window overlays.
|
|
223 ;; Assure context on ispell-command-loop. Window lossage in look cmd fixed.
|
|
224 ;; Due to pervasive opinion, common-lisp package syntax removed. Display
|
|
225 ;; problem when not highlighting.
|
|
226 ;;
|
|
227 ;; Revision 2.19 1992/01/10 10:54:08 geoff
|
|
228 ;; Make another attempt at fixing the "Bogus, dude" problem. This one is
|
|
229 ;; less elegant, but has the advantage of working.
|
|
230 ;;
|
|
231 ;; Revision 2.18 1992/01/07 10:04:52 geoff
|
|
232 ;; Fix the "Bogus, Dude" problem in ispell-word.
|
|
233 ;;
|
|
234 ;; Revision 2.17 1991/09/12 00:01:42 geoff
|
|
235 ;; Add some changes to make ispell-complete-word work better, though
|
|
236 ;; still not perfectly.
|
|
237 ;;
|
|
238 ;; Revision 2.16 91/09/04 18:00:52 geoff
|
|
239 ;; More updates from Sebastian, to make the multiple-dictionary support
|
|
240 ;; more flexible.
|
|
241 ;;
|
|
242 ;; Revision 2.15 91/09/04 17:30:02 geoff
|
|
243 ;; Sebastian Kremer's tib support
|
|
244 ;;
|
|
245 ;; Revision 2.14 91/09/04 16:19:37 geoff
|
|
246 ;; Don't do set-window-start if the move-to-window-line moved us
|
|
247 ;; downward, rather than upward. This prevents getting the buffer all
|
|
248 ;; confused. Also, don't use the "not-modified" function to clear the
|
|
249 ;; modification flag; instead use set-buffer-modified-p. This prevents
|
|
250 ;; extra messages from flashing.
|
|
251 ;;
|
|
252 ;; Revision 2.13 91/09/04 14:35:41 geoff
|
|
253 ;; Fix a spelling error in a comment. Add code to handshake with the
|
|
254 ;; ispell process before sending anything to it.
|
|
255 ;;
|
|
256 ;; Revision 2.12 91/09/03 20:14:21 geoff
|
|
257 ;; Add Sebastian Kremer's multiple-language support.
|
|
258 ;;
|
|
259 ;;
|
|
260 ;; Walt Buehring
|
|
261 ;; Texas Instruments - Computer Science Center
|
|
262 ;; ARPA: Buehring%TI-CSL@CSNet-Relay
|
|
263 ;; UUCP: {smu, texsun, im4u, rice} ! ti-csl ! buehring
|
|
264 ;;
|
|
265 ;; ispell-region and associated routines added by
|
|
266 ;; Perry Smith
|
|
267 ;; pedz@bobkat
|
|
268 ;; Tue Jan 13 20:18:02 CST 1987
|
|
269 ;;
|
|
270 ;; extensively modified by Mark Davies and Andrew Vignaux
|
|
271 ;; {mark,andrew}@vuwcomp
|
|
272 ;; Sun May 10 11:45:04 NZST 1987
|
|
273 ;;
|
|
274 ;; Ken Stevens ARPA: k.stevens@ieee.org
|
|
275 ;; Tue Jan 3 16:59:07 PST 1989
|
|
276 ;; This file has overgone a major overhaul to be compatible with ispell
|
|
277 ;; version 2.1. Most of the functions have been totally rewritten, and
|
|
278 ;; many user-accessible variables have been added. The syntax table has
|
|
279 ;; been removed since it didn't work properly anyway, and a filter is
|
|
280 ;; used rather than a buffer. Regular expressions are used based on
|
|
281 ;; ispell's internal definition of characters (see ispell(4)).
|
|
282 ;; Some new updates:
|
|
283 ;; - Updated to version 3.0 to include terse processing.
|
|
284 ;; - Added a variable for the look command.
|
|
285 ;; - Fixed a bug in ispell-word when cursor is far away from the word
|
|
286 ;; that is to be checked.
|
|
287 ;; - Ispell places the incorrect word or guess in the minibuffer now.
|
|
288 ;; - fixed a bug with 'l' option when multiple windows are on the screen.
|
|
289 ;; - lookup-words just didn't work with the process filter. Fixed.
|
|
290 ;; - Rewrote the process filter to make it cleaner and more robust
|
|
291 ;; in the event of a continued line not being completed.
|
|
292 ;; - Made ispell-init-process more robust in handling errors.
|
|
293 ;; - Fixed bug in continuation location after a region has been modified by
|
|
294 ;; correcting a misspelling.
|
|
295 ;; Mon 17 Sept 1990
|
|
296 ;;
|
|
297 ;; Sebastian Kremer <sk@thp.uni-koeln.de>
|
|
298 ;; Wed Aug 7 14:02:17 MET DST 1991
|
|
299 ;; - Ported ispell-complete-word from Ispell 2 to Ispell 3.
|
|
300 ;; - Added ispell-kill-ispell command.
|
|
301 ;; - Added ispell-dictionary and ispell-dictionary-alist variables to
|
|
302 ;; support other than default language. See their docstrings and
|
|
303 ;; command ispell-change-dictionary.
|
|
304 ;; - (ispelled it :-)
|
|
305 ;; - Added ispell-skip-tib variable to support the tib bibliography
|
|
306 ;; program.
|
0
|
307
|
|
308
|
2
|
309 ;; **********************************************************************
|
|
310 ;; The following variables should be set according to personal preference
|
|
311 ;; and location of binaries:
|
|
312 ;; **********************************************************************
|
0
|
313
|
2
|
314 ;; ******* THIS FILE IS WRITTEN FOR ISPELL VERSION 3.1
|
0
|
315
|
|
316 ;;; Code:
|
|
317
|
120
|
318 (defgroup ispell nil
|
|
319 "Spell checking using ispell"
|
|
320 :group 'processes)
|
|
321
|
0
|
322
|
120
|
323 (defcustom ispell-highlight-p t
|
|
324 "*Highlight spelling errors when non-nil."
|
|
325 :type 'boolean
|
|
326 :group 'ispell)
|
|
327
|
|
328 (defcustom ispell-highlight-face 'highlight
|
0
|
329 "*The face used for Ispell highlighting. For Emacses with overlays.
|
|
330 Possible values are `highlight', `modeline', `secondary-selection',
|
|
331 `region', and `underline'.
|
|
332 This variable can be set by the user to whatever face they desire.
|
|
333 It's most convenient if the cursor color and highlight color are
|
120
|
334 slightly different."
|
|
335 :type 'face
|
|
336 :group 'ispell)
|
0
|
337
|
120
|
338 (defcustom ispell-check-comments t
|
|
339 "*If nil, don't check spelling of comments."
|
|
340 :type 'boolean
|
|
341 :group 'ispell)
|
|
342
|
|
343 (defcustom ispell-query-replace-choices nil
|
0
|
344 "*Corrections made throughout region when non-nil.
|
120
|
345 Uses `query-replace' (\\[query-replace]) for corrections."
|
|
346 :type 'boolean
|
|
347 :group 'ispell)
|
0
|
348
|
120
|
349 (defcustom ispell-skip-tib nil
|
0
|
350 "*Does not spell check `tib' bibliography references when non-nil.
|
|
351 Skips any text between strings matching regular expressions
|
|
352 `ispell-tib-ref-beginning' and `ispell-tib-ref-end'.
|
|
353
|
|
354 TeX users beware: Any field starting with [. will skip until a .] -- even
|
|
355 your whole buffer -- unless you set `ispell-skip-tib' to nil. That includes
|
120
|
356 a [.5mm] type of number...."
|
|
357 :type 'boolean
|
|
358 :group 'ispell)
|
0
|
359
|
|
360 (defvar ispell-tib-ref-beginning "[[<]\\."
|
|
361 "Regexp matching the beginning of a Tib reference.")
|
|
362
|
|
363 (defvar ispell-tib-ref-end "\\.[]>]"
|
|
364 "Regexp matching the end of a Tib reference.")
|
|
365
|
120
|
366 (defcustom ispell-keep-choices-win t
|
0
|
367 "*When not nil, the `*Choices*' window remains for spelling session.
|
120
|
368 This minimizes redisplay thrashing."
|
|
369 :type 'boolean
|
|
370 :group 'ispell)
|
0
|
371
|
120
|
372 (defcustom ispell-choices-win-default-height 2
|
0
|
373 "*The default size of the `*Choices*' window, including status line.
|
120
|
374 Must be greater than 1."
|
|
375 :type 'integer
|
|
376 :group 'ispell)
|
0
|
377
|
120
|
378 (defcustom ispell-program-name "ispell"
|
|
379 "Program invoked by \\[ispell-word] and \\[ispell-region] commands."
|
|
380 :type 'string
|
|
381 :group 'ispell)
|
0
|
382
|
120
|
383 (defcustom ispell-alternate-dictionary
|
0
|
384 (cond ((file-exists-p "/usr/dict/web2") "/usr/dict/web2")
|
|
385 ((file-exists-p "/usr/share/dict/web2") "/usr/share/dict/web2")
|
|
386 ((file-exists-p "/usr/dict/words") "/usr/dict/words")
|
|
387 ((file-exists-p "/usr/lib/dict/words") "/usr/lib/dict/words")
|
|
388 ((file-exists-p "/usr/share/dict/words") "/usr/share/dict/words")
|
|
389 ((file-exists-p "/sys/dict") "/sys/dict")
|
|
390 (t "/usr/dict/words"))
|
120
|
391 "*Alternate dictionary for spelling help."
|
|
392 :type 'file
|
|
393 :group 'ispell)
|
0
|
394
|
120
|
395 (defcustom ispell-complete-word-dict ispell-alternate-dictionary
|
|
396 "*Dictionary used for word completion."
|
|
397 :type 'file
|
|
398 :group 'ispell)
|
0
|
399
|
|
400 (defvar ispell-grep-command "egrep"
|
|
401 "Name of the grep command for search processes.")
|
|
402
|
|
403 (defvar ispell-grep-options "-i"
|
|
404 "String of options to use when running the program in `ispell-grep-command'.
|
|
405 Should probably be \"-i\" or \"-e\".
|
|
406 Some machines (like the NeXT) don't support \"-i\"")
|
|
407
|
|
408 (defvar ispell-look-command "look"
|
|
409 "Name of the look command for search processes.
|
|
410 This must be an absolute file name.")
|
|
411
|
120
|
412 (defcustom ispell-look-p `(file-exists-p ispell-look-command)
|
0
|
413 "*Non-nil means use `look' rather than `grep'.
|
120
|
414 Default is based on whether `look' seems to be available."
|
|
415 :type 'boolean
|
|
416 :group 'ispell)
|
0
|
417
|
120
|
418 (defcustom ispell-have-new-look nil
|
|
419 "*Non-nil means use the `-r' option (regexp) when running `look'."
|
|
420 :type 'boolean
|
|
421 :group 'ispell)
|
0
|
422
|
|
423 (defvar ispell-look-options (if ispell-have-new-look "-dfr" "-df")
|
|
424 "String of command options for `ispell-look-command'.")
|
|
425
|
|
426 (defvar ispell-use-ptys-p nil
|
|
427 "When non-nil, Emacs uses ptys to communicate with Ispell.
|
|
428 When nil, Emacs uses pipes.")
|
|
429
|
120
|
430 (defcustom ispell-following-word nil
|
0
|
431 "*Non-nil means `ispell-word' checks the word around or after point.
|
120
|
432 Otherwise `ispell-word' checks the preceding word."
|
|
433 :type 'boolean
|
|
434 :group 'ispell)
|
0
|
435
|
120
|
436 (defcustom ispell-help-in-bufferp nil
|
0
|
437 "*Non-nil means display interactive keymap help in a buffer.
|
120
|
438 Otherwise use the minibuffer."
|
|
439 :type 'boolean
|
|
440 :group 'ispell)
|
0
|
441
|
120
|
442 (defcustom ispell-quietly nil
|
|
443 "*Non-nil means suppress messages in `ispell-word'."
|
|
444 :type 'boolean
|
|
445 :group 'ispell)
|
0
|
446
|
120
|
447 (defcustom ispell-format-word (function upcase)
|
0
|
448 "*Formatting function for displaying word being spell checked.
|
120
|
449 The function must take one string argument and return a string."
|
|
450 :type 'function
|
|
451 :group 'ispell)
|
0
|
452
|
|
453 ;;;###autoload
|
120
|
454 (defcustom ispell-personal-dictionary nil
|
0
|
455 "*File name of your personal spelling dictionary, or nil.
|
|
456 If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,
|
120
|
457 where DICTNAME is the name of your default dictionary."
|
|
458 :type 'file
|
|
459 :group 'ispell)
|
0
|
460
|
120
|
461 (defcustom ispell-silently-savep nil
|
|
462 "*When non-nil, save the personal dictionary without confirmation."
|
|
463 :type 'boolean
|
|
464 :group 'ispell)
|
0
|
465
|
|
466 ;;; This variable contains the current dictionary being used if the ispell
|
|
467 ;;; process is running. Otherwise it contains the global default.
|
|
468 (defvar ispell-dictionary nil
|
|
469 "If non-nil, a dictionary to use instead of the default one.
|
|
470 This is passed to the ispell process using the `-d' switch and is
|
|
471 used as key in `ispell-dictionary-alist' (which see).
|
|
472
|
|
473 You should set this variable before your first use of Emacs spell-checking
|
|
474 commands in the Emacs session, or else use the \\[ispell-change-dictionary]
|
|
475 command to change it. Otherwise, this variable only takes effect in a newly
|
|
476 started Ispell process.")
|
|
477
|
120
|
478 (defcustom ispell-extra-args nil
|
0
|
479 "*If non-nil, a list of extra switches to pass to the Ispell program.
|
|
480 For example, '(\"-W\" \"3\") to cause it to accept all 1-3 character
|
|
481 words as correct. See also `ispell-dictionary-alist', which may be used
|
120
|
482 for language-specific arguments."
|
|
483 :type '(repeat string)
|
|
484 :group 'ispell)
|
0
|
485
|
2
|
486 ;;; The preparation of the menu bar menu must be autoloaded
|
|
487 ;;; because otherwise this file gets autoloaded every time Emacs starts
|
|
488 ;;; so that it can set up the menus and determine keyboard equivalents.
|
|
489
|
0
|
490 ;;;###autoload
|
|
491 (defvar ispell-dictionary-alist-1 ; sk 9-Aug-1991 18:28
|
|
492 '((nil ; default (english.aff)
|
|
493 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil)
|
|
494 ("english" ; make english explicitly selectable
|
|
495 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil)
|
|
496 ("british" ; british version
|
|
497 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B" "-d" "british") nil)
|
|
498 ("deutsch" ; deutsch.aff
|
|
499 "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex")
|
|
500 ("deutsch8"
|
|
501 "[a-zA-Z\304\326\334\344\366\337\374]"
|
|
502 "[^a-zA-Z\304\326\334\344\366\337\374]"
|
|
503 "[']" t ("-C" "-d" "deutsch") "~latin1")
|
|
504 ("nederlands" ; nederlands.aff
|
|
505 "[A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
|
|
506 "[^A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
|
|
507 "[']" t ("-C") nil)
|
|
508 ("nederlands8" ; dutch8.aff
|
|
509 "[A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
|
|
510 "[^A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
|
|
511 "[']" t ("-C") nil)))
|
|
512
|
|
513 ;;;###autoload
|
|
514 (defvar ispell-dictionary-alist-2
|
|
515 '(("svenska" ;7 bit swedish mode
|
|
516 "[A-Za-z}{|\\133\\135\\\\]" "[^A-Za-z}{|\\133\\135\\\\]"
|
|
517 "[']" nil ("-C") nil)
|
|
518 ("svenska8" ;8 bit swedish mode
|
|
519 "[A-Za-z\345\344\366\305\304\366]" "[^A-Za-z\345\344\366\305\304\366]"
|
|
520 "[']" nil ("-C" "-d" "svenska") "~list") ; Add `"-T" "list"' instead?
|
|
521 ("francais7"
|
|
522 "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil)
|
|
523 ("francais" ; francais.aff
|
|
524 "[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]"
|
|
525 "[^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]"
|
|
526 "[---']" t nil "~list")
|
|
527 ("francais-tex" ; francais.aff
|
|
528 "[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\\]"
|
|
529 "[^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\\]"
|
|
530 "[---'^`\"]" t nil "~tex")
|
120
|
531 ("italiano" ; italiano.aff
|
|
532 "[A-Za-z\300\310\311\314\315\316\322\331\332\340\350\351\354\355\356\362\371\372]"
|
|
533 "[^A-Za-z\300\310\311\314\315\316\322\331\332\340\350\351\354\355\356\362\371\372]"
|
|
534 "[']" t ("-d" "italiano") "~list")
|
0
|
535 ("dansk" ; dansk.aff
|
|
536 "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]"
|
|
537 "" nil ("-C") nil)
|
|
538 ))
|
|
539
|
|
540
|
|
541 ;;; ispell-dictionary-alist is set up from two subvariables above
|
|
542 ;;; to avoid having very long lines in loaddefs.el.
|
|
543 ;;;###autoload
|
|
544 (defvar ispell-dictionary-alist
|
|
545 (append ispell-dictionary-alist-1 ispell-dictionary-alist-2)
|
|
546 "An alist of dictionaries and their associated parameters.
|
|
547
|
|
548 Each element of this list is also a list:
|
|
549
|
|
550 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
|
|
551 ISPELL-ARGS EXTENDED-CHARACTER-MODE\)
|
|
552
|
|
553 DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil
|
|
554 means the default dictionary.
|
|
555
|
|
556 CASECHARS is a regular expression of valid characters that comprise a
|
|
557 word.
|
|
558
|
|
559 NOT-CASECHARS is the opposite regexp of CASECHARS.
|
|
560
|
|
561 OTHERCHARS is a regular expression of other characters that are valid
|
|
562 in word constructs. Otherchars cannot be adjacent to each other in a
|
|
563 word, nor can they begin or end a word. This implies we can't check
|
|
564 \"Stevens'\" as a correct possessive and other correct formations.
|
|
565
|
|
566 Hint: regexp syntax requires the hyphen to be declared first here.
|
|
567
|
|
568 MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a
|
|
569 word instead of only one.
|
|
570
|
|
571 ISPELL-ARGS is a list of additional arguments passed to the ispell
|
|
572 subprocess.
|
|
573
|
|
574 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
|
|
575 have been configured in an Ispell affix file. (For example, umlauts
|
|
576 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
|
|
577 in English. This has the same effect as the command-line `-T' option.
|
|
578 The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
|
|
579 but the dictionary can control the extended character mode.
|
|
580 Both defaults can be overruled in a buffer-local fashion. See
|
|
581 `ispell-parsing-keyword' for details on this.
|
|
582
|
|
583 Note that the CASECHARS and OTHERCHARS slots of the alist should
|
|
584 contain the same character set as casechars and otherchars in the
|
|
585 language.aff file \(e.g., english.aff\).")
|
|
586
|
|
587 ;;;###autoload
|
|
588 (defvar ispell-menu-map nil "Key map for ispell menu")
|
|
589
|
|
590 ;;;###autoload
|
2
|
591 (defvar ispell-menu-xemacs nil "Spelling menu for XEmacs.")
|
0
|
592
|
2
|
593 ;;; Break out XEmacs menu and split into several calls to avoid having
|
0
|
594 ;;; long lines in loaddefs.el. Detect need off following constant.
|
|
595
|
|
596 ;;;###autoload
|
2
|
597 (defconst ispell-menu-map-needed ; make sure this is not XEmacs
|
0
|
598 (and (not ispell-menu-map)
|
|
599 (string-lessp "19" emacs-version)
|
|
600 ;; make sure this isn't XEmacs
|
|
601 (not (string-match "XEmacs" emacs-version))))
|
|
602
|
|
603
|
2
|
604 ;;; Set up dictionary
|
0
|
605 ;;;###autoload
|
|
606 (if ispell-menu-map-needed
|
|
607 (let ((dicts (reverse (cons (cons "default" nil) ispell-dictionary-alist)))
|
|
608 name)
|
|
609 (setq ispell-menu-map (make-sparse-keymap "Spell"))
|
|
610 ;; add the dictionaries to the bottom of the list.
|
|
611 (while dicts
|
|
612 (setq name (car (car dicts))
|
|
613 dicts (cdr dicts))
|
|
614 (if (stringp name)
|
|
615 (define-key ispell-menu-map (vector (intern name))
|
|
616 (cons (concat "Select " (capitalize name))
|
|
617 (list 'lambda () '(interactive)
|
|
618 (list 'ispell-change-dictionary name))))))))
|
|
619
|
|
620 ;;; define commands in menu in opposite order you want them to appear.
|
|
621 ;;;###autoload
|
|
622 (if ispell-menu-map-needed
|
|
623 (progn
|
|
624 (define-key ispell-menu-map [ispell-change-dictionary]
|
|
625 '("Change Dictionary" . ispell-change-dictionary))
|
|
626 (define-key ispell-menu-map [ispell-kill-ispell]
|
|
627 '("Kill Process" . ispell-kill-ispell))
|
|
628 (define-key ispell-menu-map [ispell-pdict-save]
|
|
629 '("Save Dictionary" . (lambda () (interactive) (ispell-pdict-save t t))))
|
|
630 (define-key ispell-menu-map [ispell-complete-word]
|
|
631 '("Complete Word" . ispell-complete-word))
|
|
632 (define-key ispell-menu-map [ispell-complete-word-interior-frag]
|
|
633 '("Complete Word Frag" . ispell-complete-word-interior-frag))))
|
|
634
|
|
635 ;;;###autoload
|
|
636 (if ispell-menu-map-needed
|
|
637 (progn
|
|
638 (define-key ispell-menu-map [ispell-continue]
|
|
639 '("Continue Check" . ispell-continue))
|
|
640 (define-key ispell-menu-map [ispell-word]
|
|
641 '("Check Word" . ispell-word))
|
|
642 (define-key ispell-menu-map [ispell-region]
|
|
643 '("Check Region" . ispell-region))
|
|
644 (define-key ispell-menu-map [ispell-buffer]
|
|
645 '("Check Buffer" . ispell-buffer))))
|
|
646
|
|
647 ;;;###autoload
|
|
648 (if ispell-menu-map-needed
|
|
649 (progn
|
|
650 (define-key ispell-menu-map [ispell-message]
|
|
651 '("Check Message" . ispell-message))
|
|
652 (define-key ispell-menu-map [ispell-help]
|
|
653 ;; use (x-popup-menu last-nonmenu-event(list "" ispell-help-list)) ?
|
|
654 '("Help" . (lambda () (interactive) (describe-function 'ispell-help))))
|
|
655 (put 'ispell-region 'menu-enable 'mark-active)
|
|
656 (fset 'ispell-menu-map (symbol-value 'ispell-menu-map))))
|
|
657
|
|
658 ;;; XEmacs version 19
|
|
659 (if (and (string-lessp "19" emacs-version)
|
|
660 (string-match "Lucid" emacs-version)
|
|
661 (not (and (boundp 'infodock-version) infodock-version)))
|
|
662 (let ((dicts (cons (cons "default" nil) ispell-dictionary-alist))
|
|
663 (current-menubar (or current-menubar default-menubar))
|
|
664 (menu
|
|
665 '(["Help" (describe-function 'ispell-help) t]
|
|
666 ;;["Help" (popup-menu ispell-help-list) t]
|
|
667 ["Check Message" ispell-message t]
|
|
668 ["Check Buffer" ispell-buffer t]
|
|
669 ["Check Word" ispell-word t]
|
|
670 ["Check Region" ispell-region (or (not zmacs-regions) (mark))]
|
|
671 ["Continue Check" ispell-continue t]
|
|
672 ["Complete Word Frag"ispell-complete-word-interior-frag t]
|
|
673 ["Complete Word" ispell-complete-word t]
|
|
674 ["Kill Process" ispell-kill-ispell t]
|
|
675 "-"
|
|
676 ["Save Dictionary" (ispell-pdict-save t t) t]
|
|
677 ["Change Dictionary" ispell-change-dictionary t]))
|
|
678 name)
|
|
679 (while dicts
|
|
680 (setq name (car (car dicts))
|
|
681 dicts (cdr dicts))
|
|
682 (if (stringp name)
|
|
683 (setq menu (append menu
|
|
684 (list
|
|
685 (vector (concat "Select " (capitalize name))
|
|
686 (list 'ispell-change-dictionary name)
|
|
687 t))))))
|
2
|
688 (setq ispell-menu-xemacs menu)
|
0
|
689 (if current-menubar
|
|
690 (progn
|
|
691 (delete-menu-item '("Edit" "Spell")) ; in case already defined
|
2
|
692 (add-menu '("Edit") "Spell" ispell-menu-xemacs)))))
|
0
|
693
|
|
694
|
|
695 ;;; **********************************************************************
|
|
696 ;;; The following are used by ispell, and should not be changed.
|
|
697 ;;; **********************************************************************
|
|
698
|
|
699
|
|
700 ;;; The version must be 3.1 or greater for this version of ispell.el
|
|
701 ;;; There is an incompatibility between version 3.1.12 and lower versions.
|
|
702 (defconst ispell-required-version '("3.1." 12)
|
|
703 "Ispell versions with which this version of ispell.el is known to work.")
|
|
704 (defvar ispell-offset 1
|
|
705 "Offset that maps protocol differences between ispell 3.1 versions.")
|
|
706
|
|
707 (defun ispell-get-casechars ()
|
|
708 (nth 1 (assoc ispell-dictionary ispell-dictionary-alist)))
|
|
709 (defun ispell-get-not-casechars ()
|
|
710 (nth 2 (assoc ispell-dictionary ispell-dictionary-alist)))
|
|
711 (defun ispell-get-otherchars ()
|
|
712 (nth 3 (assoc ispell-dictionary ispell-dictionary-alist)))
|
|
713 (defun ispell-get-many-otherchars-p ()
|
|
714 (nth 4 (assoc ispell-dictionary ispell-dictionary-alist)))
|
|
715 (defun ispell-get-ispell-args ()
|
|
716 (nth 5 (assoc ispell-dictionary ispell-dictionary-alist)))
|
|
717 (defun ispell-get-extended-character-mode ()
|
|
718 (nth 6 (assoc ispell-dictionary ispell-dictionary-alist)))
|
|
719
|
|
720 (defvar ispell-process nil
|
|
721 "The process object for Ispell.")
|
|
722
|
|
723 (defvar ispell-pdict-modified-p nil
|
|
724 "Non-nil means personal dictionary has modifications to be saved.")
|
|
725
|
|
726 ;;; If you want to save the dictionary when quitting, must do so explicitly.
|
|
727 ;;; When non-nil, the spell session is terminated.
|
|
728 ;;; When numeric, contains cursor location in buffer, and cursor remains there.
|
|
729 (defvar ispell-quit nil)
|
|
730
|
|
731 (defvar ispell-filter nil
|
|
732 "Output filter from piped calls to Ispell.")
|
|
733
|
|
734 (defvar ispell-filter-continue nil
|
|
735 "Control variable for Ispell filter function.")
|
|
736
|
|
737 (defvar ispell-process-directory nil
|
|
738 "The directory where `ispell-process' was started.")
|
|
739
|
|
740 (defvar ispell-query-replace-marker (make-marker)
|
|
741 "Marker for `query-replace' processing.")
|
|
742
|
|
743 (defvar ispell-checking-message nil
|
|
744 "Non-nil when we're checking a mail message")
|
|
745
|
|
746 (defconst ispell-choices-buffer "*Choices*")
|
|
747
|
|
748 (defvar ispell-overlay nil "Overlay variable for Ispell highlighting.")
|
|
749
|
|
750 ;;; *** Buffer Local Definitions ***
|
|
751
|
|
752 ;;; This is the local dictionary to use. When nil the default dictionary will
|
|
753 ;;; be used. Do not redefine default value or it will override the global!
|
|
754 (defvar ispell-local-dictionary nil
|
|
755 "If non-nil, a dictionary to use for Ispell commands in this buffer.
|
|
756 The value must be a string dictionary name in `ispell-dictionary-alist'.
|
|
757 This variable becomes buffer-local when set in any fashion.
|
|
758
|
|
759 Setting ispell-local-dictionary to a value has the same effect as
|
|
760 calling \\[ispell-change-dictionary] with that value. This variable
|
|
761 is automatically set when defined in the file with either
|
|
762 `ispell-dictionary-keyword' or the Local Variable syntax.")
|
|
763
|
|
764 (make-variable-buffer-local 'ispell-local-dictionary)
|
|
765
|
|
766 ;; Use default directory, unless locally set.
|
|
767 (set-default 'ispell-local-dictionary nil)
|
|
768
|
|
769 (defconst ispell-words-keyword "LocalWords: "
|
|
770 "The keyword for local oddly-spelled words to accept.
|
|
771 The keyword will be followed by any number of local word spellings.
|
|
772 There can be multiple of these keywords in the file.")
|
|
773
|
|
774 (defconst ispell-dictionary-keyword "Local IspellDict: "
|
|
775 "The keyword for local dictionary definitions.
|
|
776 There should be only one dictionary keyword definition per file, and it
|
|
777 should be followed by a correct dictionary name in `ispell-dictionary-alist'.")
|
|
778
|
|
779 (defconst ispell-parsing-keyword "Local IspellParsing: "
|
|
780 "The keyword for overriding default Ispell parsing.
|
|
781 Determined by the buffer's major mode and extended-character mode as well as
|
|
782 the default dictionary.
|
|
783
|
|
784 The above keyword string should be followed by `latex-mode' or
|
|
785 `nroff-mode' to put the current buffer into the desired parsing mode.
|
|
786
|
|
787 Extended character mode can be changed for this buffer by placing
|
|
788 a `~' followed by an extended-character mode -- such as `~.tex'.")
|
|
789
|
|
790 (defvar ispell-skip-sgml nil
|
|
791 "Skips spell checking of SGML tags and entity references when non-nil.
|
|
792 This variable is set when major-mode is sgml-mode or html-mode.")
|
|
793
|
|
794 ;;;###autoload
|
|
795 (defvar ispell-local-pdict ispell-personal-dictionary
|
|
796 "A buffer local variable containing the current personal dictionary.
|
|
797 If non-nil, the value must be a string, which is a file name.
|
|
798
|
|
799 If you specify a personal dictionary for the current buffer which is
|
|
800 different from the current personal dictionary, the effect is similar
|
|
801 to calling \\[ispell-change-dictionary]. This variable is automatically
|
|
802 set when defined in the file with either `ispell-pdict-keyword' or the
|
|
803 local variable syntax.")
|
|
804
|
|
805 (make-variable-buffer-local 'ispell-local-pdict)
|
|
806
|
|
807 (defconst ispell-pdict-keyword "Local IspellPersDict: "
|
|
808 "The keyword for defining buffer local dictionaries.")
|
|
809
|
|
810 (defvar ispell-buffer-local-name nil
|
|
811 "Contains the buffer name if local word definitions were used.
|
|
812 Ispell is then restarted because the local words could conflict.")
|
|
813
|
|
814 (defvar ispell-parser 'use-mode-name
|
|
815 "*Indicates whether ispell should parse the current buffer as TeX Code.
|
|
816 Special value `use-mode-name' tries to guess using the name of major-mode.
|
|
817 Default parser is 'nroff.
|
|
818 Currently the only other valid parser is 'tex.
|
|
819
|
|
820 You can set this variable in hooks in your init file -- eg:
|
|
821
|
|
822 (add-hook 'tex-mode-hook (function (lambda () (setq ispell-parser 'tex))))")
|
|
823
|
|
824 (defvar ispell-region-end (make-marker)
|
|
825 "Marker that allows spelling continuations.")
|
|
826
|
|
827 (defvar ispell-check-only nil
|
|
828 "If non-nil, `ispell-word' does not try to correct the word.")
|
|
829
|
|
830
|
|
831 ;;; **********************************************************************
|
|
832 ;;; **********************************************************************
|
|
833
|
|
834
|
|
835 (and (string-lessp "19" emacs-version)
|
|
836 (not (boundp 'epoch::version))
|
|
837 (defalias 'ispell 'ispell-buffer))
|
|
838
|
78
|
839
|
|
840 ;; XEmacs: \M-$ for whatever reason, drives `make autoloads' bonkers
|
|
841
|
0
|
842 ;;;###autoload
|
78
|
843 (define-key global-map [(meta ?\$)] 'ispell-word)
|
0
|
844
|
|
845 ;;;###autoload
|
|
846 (defun ispell-word (&optional following quietly continue)
|
|
847 "Check spelling of word under or before the cursor.
|
|
848 If the word is not found in dictionary, display possible corrections
|
|
849 in a window allowing you to choose one.
|
|
850
|
|
851 With a prefix argument (or if CONTINUE is non-nil),
|
|
852 resume interrupted spell-checking of a buffer or region.
|
|
853
|
|
854 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
|
|
855 is non-nil when called interactively, then the following word
|
|
856 \(rather than preceding\) is checked when the cursor is not over a word.
|
|
857 When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
|
|
858 when called interactively, non-corrective messages are suppressed.
|
|
859
|
|
860 Word syntax described by `ispell-dictionary-alist' (which see).
|
|
861
|
|
862 This will check or reload the dictionary. Use \\[ispell-change-dictionary]
|
|
863 or \\[ispell-region] to update the Ispell process."
|
|
864 (interactive (list nil nil current-prefix-arg))
|
|
865 (if continue
|
|
866 (ispell-continue)
|
|
867 (if (interactive-p)
|
|
868 (setq following ispell-following-word
|
|
869 quietly ispell-quietly))
|
|
870 (ispell-accept-buffer-local-defs) ; use the correct dictionary
|
|
871 (let ((cursor-location (point)) ; retain cursor location
|
|
872 (word (ispell-get-word following))
|
|
873 start end poss replace)
|
|
874 ;; destructure return word info list.
|
|
875 (setq start (car (cdr word))
|
|
876 end (car (cdr (cdr word)))
|
|
877 word (car word))
|
|
878
|
|
879 ;; now check spelling of word.
|
|
880 (or quietly
|
|
881 (message "Checking spelling of %s..."
|
|
882 (funcall ispell-format-word word)))
|
|
883 (process-send-string ispell-process "%\n") ;put in verbose mode
|
|
884 (process-send-string ispell-process (concat "^" word "\n"))
|
|
885 ;; wait until ispell has processed word
|
|
886 (while (progn
|
|
887 (accept-process-output ispell-process)
|
|
888 (not (string= "" (car ispell-filter)))))
|
|
889 ;;(process-send-string ispell-process "!\n") ;back to terse mode.
|
|
890 (setq ispell-filter (cdr ispell-filter))
|
|
891 (if (listp ispell-filter)
|
|
892 (setq poss (ispell-parse-output (car ispell-filter))))
|
|
893 (cond ((eq poss t)
|
|
894 (or quietly
|
|
895 (message "%s is correct" (funcall ispell-format-word word))))
|
|
896 ((stringp poss)
|
|
897 (or quietly
|
|
898 (message "%s is correct because of root %s"
|
|
899 (funcall ispell-format-word word)
|
|
900 (funcall ispell-format-word poss))))
|
|
901 ((null poss) (message "Error in ispell process"))
|
|
902 (ispell-check-only ; called from ispell minor mode.
|
|
903 (beep))
|
|
904 (t ; prompt for correct word.
|
|
905 (save-window-excursion
|
|
906 (setq replace (ispell-command-loop
|
|
907 (car (cdr (cdr poss)))
|
|
908 (car (cdr (cdr (cdr poss))))
|
|
909 (car poss) start end)))
|
|
910 (cond ((equal 0 replace)
|
|
911 (ispell-add-per-file-word-list (car poss)))
|
|
912 (replace
|
|
913 (setq word (if (atom replace) replace (car replace))
|
|
914 cursor-location (+ (- (length word) (- end start))
|
|
915 cursor-location))
|
|
916 (if (not (equal word (car poss)))
|
|
917 (progn
|
|
918 (delete-region start end)
|
|
919 (insert word)))
|
|
920 (if (not (atom replace)) ; recheck spelling of replacement
|
|
921 (progn
|
|
922 (goto-char cursor-location)
|
|
923 (ispell-word following quietly)))))
|
|
924 (if (get-buffer ispell-choices-buffer)
|
|
925 (kill-buffer ispell-choices-buffer))))
|
|
926 (goto-char cursor-location) ; return to original location
|
|
927 (ispell-pdict-save ispell-silently-savep)
|
|
928 (if ispell-quit (setq ispell-quit nil)))))
|
|
929
|
|
930
|
|
931 (defun ispell-get-word (following &optional extra-otherchars)
|
|
932 "Return the word for spell-checking according to ispell syntax.
|
|
933 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
|
|
934 is non-nil when called interactively, then the following word
|
|
935 \(rather than preceding\) is checked when the cursor is not over a word.
|
|
936 Optional second argument contains otherchars that can be included in word
|
|
937 many times.
|
|
938
|
|
939 Word syntax described by `ispell-dictionary-alist' (which see)."
|
|
940 (let* ((ispell-casechars (ispell-get-casechars))
|
|
941 (ispell-not-casechars (ispell-get-not-casechars))
|
|
942 (ispell-otherchars (ispell-get-otherchars))
|
|
943 (ispell-many-otherchars-p (ispell-get-many-otherchars-p))
|
|
944 (word-regexp (concat ispell-casechars
|
|
945 "+\\("
|
|
946 ispell-otherchars
|
|
947 "?"
|
|
948 (if extra-otherchars
|
|
949 (concat extra-otherchars "?"))
|
|
950 ispell-casechars
|
|
951 "+\\)"
|
|
952 (if (or ispell-many-otherchars-p
|
|
953 extra-otherchars)
|
|
954 "*" "?")))
|
|
955 did-it-once
|
|
956 start end word)
|
|
957 ;; find the word
|
|
958 (if (not (looking-at ispell-casechars))
|
|
959 (if following
|
|
960 (re-search-forward ispell-casechars (point-max) t)
|
|
961 (re-search-backward ispell-casechars (point-min) t)))
|
|
962 ;; move to front of word
|
|
963 (re-search-backward ispell-not-casechars (point-min) 'start)
|
|
964 (while (and (or (looking-at ispell-otherchars)
|
|
965 (and extra-otherchars (looking-at extra-otherchars)))
|
|
966 (not (bobp))
|
|
967 (or (not did-it-once)
|
|
968 ispell-many-otherchars-p))
|
|
969 (if (and extra-otherchars (looking-at extra-otherchars))
|
|
970 (progn
|
|
971 (backward-char 1)
|
|
972 (if (looking-at ispell-casechars)
|
|
973 (re-search-backward ispell-not-casechars (point-min) 'move)))
|
|
974 (setq did-it-once t)
|
|
975 (backward-char 1)
|
|
976 (if (looking-at ispell-casechars)
|
|
977 (re-search-backward ispell-not-casechars (point-min) 'move)
|
|
978 (backward-char -1))))
|
|
979 ;; Now mark the word and save to string.
|
|
980 (or (re-search-forward word-regexp (point-max) t)
|
|
981 (error "No word found to check!"))
|
|
982 (setq start (match-beginning 0)
|
|
983 end (point)
|
|
984 word (buffer-substring start end))
|
|
985 (list word start end)))
|
|
986
|
|
987
|
|
988 ;;; Global ispell-pdict-modified-p is set by ispell-command-loop and
|
|
989 ;;; tracks changes in the dictionary. The global may either be
|
|
990 ;;; a value or a list, whose value is the state of whether the
|
|
991 ;;; dictionary needs to be saved.
|
|
992
|
|
993 (defun ispell-pdict-save (&optional no-query force-save)
|
|
994 "Check to see if the personal dictionary has been modified.
|
|
995 If so, ask if it needs to be saved."
|
|
996 (interactive (list ispell-silently-savep t))
|
|
997 (if (and ispell-pdict-modified-p (listp ispell-pdict-modified-p))
|
|
998 (setq ispell-pdict-modified-p (car ispell-pdict-modified-p)))
|
|
999 (if (or ispell-pdict-modified-p force-save)
|
|
1000 (if (or no-query (y-or-n-p "Personal dictionary modified. Save? "))
|
|
1001 (progn
|
|
1002 (process-send-string ispell-process "#\n")
|
|
1003 (message "Personal dictionary saved."))))
|
|
1004 ;; unassert variable, even if not saved to avoid questioning.
|
|
1005 (setq ispell-pdict-modified-p nil))
|
|
1006
|
|
1007
|
|
1008 (defun ispell-command-loop (miss guess word start end)
|
|
1009 "Display possible corrections from list MISS.
|
|
1010 GUESS lists possibly valid affix construction of WORD.
|
|
1011 Returns nil to keep word.
|
|
1012 Returns 0 to insert locally into buffer-local dictionary.
|
|
1013 Returns string for new chosen word.
|
|
1014 Returns list for new replacement word (will be rechecked).
|
|
1015 Highlights the word, which is assumed to run from START to END.
|
|
1016 Global `ispell-pdict-modified-p' becomes a list where the only value
|
|
1017 indicates whether the dictionary has been modified when option `a' or `i' is
|
|
1018 used."
|
|
1019 (let ((textbuf (current-buffer))
|
|
1020 (count ?0)
|
|
1021 (line 2)
|
|
1022 (max-lines (- (window-height) 4)) ; assure 4 context lines.
|
|
1023 (choices miss)
|
|
1024 (window-min-height (min window-min-height
|
|
1025 ispell-choices-win-default-height))
|
|
1026 (command-characters '( ? ?i ?a ?A ?r ?R ?? ?x ?X ?q ?l ?u ?m ))
|
|
1027 (skipped 0)
|
|
1028 char num result textwin highlighted)
|
|
1029
|
|
1030 ;; setup the *Choices* buffer with valid data.
|
|
1031 (save-excursion
|
|
1032 (set-buffer (get-buffer-create ispell-choices-buffer))
|
|
1033 (setq mode-line-format (concat "-- %b -- word: " word))
|
|
1034 ;; XEmacs: turn off the modeline
|
|
1035 (and (fboundp 'set-specifier)
|
|
1036 (set-specifier has-modeline-p (cons (current-buffer) nil)))
|
|
1037 (erase-buffer)
|
|
1038 (if guess
|
|
1039 (progn
|
|
1040 (insert "Affix rules generate and capitalize "
|
|
1041 "this word as shown below:\n\t")
|
|
1042 (while guess
|
|
1043 (if (> (+ 4 (current-column) (length (car guess)))
|
|
1044 (window-width))
|
|
1045 (progn
|
|
1046 (insert "\n\t")
|
|
1047 (setq line (1+ line))))
|
|
1048 (insert (car guess) " ")
|
|
1049 (setq guess (cdr guess)))
|
|
1050 (insert "\nUse option `i' if this is a correct composition"
|
|
1051 " from the derivative root.\n")
|
|
1052 (setq line (+ line (if choices 3 2)))))
|
|
1053 (while (and choices
|
|
1054 (< (if (> (+ 7 (current-column) (length (car choices))
|
|
1055 (if (> count ?~) 3 0))
|
|
1056 (window-width))
|
|
1057 (progn
|
|
1058 (insert "\n")
|
|
1059 (setq line (1+ line)))
|
|
1060 line)
|
|
1061 max-lines))
|
|
1062 ;; not so good if there are over 20 or 30 options, but then, if
|
|
1063 ;; there are that many you don't want to scan them all anyway...
|
|
1064 (while (memq count command-characters) ; skip command characters.
|
|
1065 (setq count (1+ count)
|
|
1066 skipped (1+ skipped)))
|
|
1067 (insert "(" count ") " (car choices) " ")
|
|
1068 (setq choices (cdr choices)
|
|
1069 count (1+ count)))
|
|
1070 (setq count (- count ?0 skipped)))
|
|
1071
|
|
1072 ;; Assure word is visible
|
|
1073 (if (not (pos-visible-in-window-p end))
|
|
1074 (sit-for 0))
|
|
1075 ;; Display choices for misspelled word.
|
|
1076 (let ((choices-window (get-buffer-window ispell-choices-buffer)))
|
|
1077 (if choices-window
|
|
1078 (if (= line (window-height choices-window))
|
|
1079 (select-window choices-window)
|
|
1080 ;; *Choices* window changed size. Adjust the choices window
|
|
1081 ;; without scrolling the spelled window when possible
|
|
1082 (let ((window-line (- line (window-height choices-window)))
|
|
1083 (visible (progn (forward-line -1) (point))))
|
|
1084 (if (< line ispell-choices-win-default-height)
|
|
1085 (setq window-line (+ window-line
|
|
1086 (- ispell-choices-win-default-height
|
|
1087 line))))
|
|
1088 (move-to-window-line 0)
|
|
1089 (forward-line window-line)
|
|
1090 (set-window-start (selected-window)
|
|
1091 (if (> (point) visible) visible (point)))
|
|
1092 (goto-char end)
|
|
1093 (select-window (previous-window)) ; *Choices* window
|
|
1094 (enlarge-window window-line)))
|
|
1095 ;; Overlay *Choices* window when it isn't showing
|
|
1096 (ispell-overlay-window (max line ispell-choices-win-default-height)))
|
|
1097 (switch-to-buffer ispell-choices-buffer)
|
|
1098 (goto-char (point-min)))
|
|
1099
|
|
1100 (select-window (setq textwin (next-window)))
|
|
1101
|
|
1102 ;; highlight word, protecting current buffer status
|
|
1103 (unwind-protect
|
|
1104 (progn
|
|
1105 (if ispell-highlight-p
|
|
1106 (ispell-highlight-spelling-error start end t))
|
|
1107 ;; Loop until a valid choice is made.
|
|
1108 (while
|
|
1109 (eq
|
|
1110 t
|
|
1111 (setq
|
|
1112 result
|
|
1113 (progn
|
|
1114 (undo-boundary)
|
|
1115 (message (concat "C-h or ? for more options; SPC to leave "
|
|
1116 "unchanged, Character to replace word"))
|
|
1117 (let ((inhibit-quit t))
|
|
1118 (setq char (if (fboundp 'read-char-exclusive)
|
|
1119 (read-char-exclusive)
|
|
1120 (read-char))
|
|
1121 skipped 0)
|
|
1122 (if (or quit-flag (= char ?\C-g)) ; C-g is like typing X
|
|
1123 (setq char ?X
|
|
1124 quit-flag nil)))
|
|
1125 ;; Adjust num to array offset skipping command characters.
|
|
1126 (let ((com-chars command-characters))
|
|
1127 (while com-chars
|
|
1128 (if (and (> (car com-chars) ?0) (< (car com-chars) char))
|
|
1129 (setq skipped (1+ skipped)))
|
|
1130 (setq com-chars (cdr com-chars)))
|
|
1131 (setq num (- char ?0 skipped)))
|
|
1132
|
|
1133 (cond
|
|
1134 ((= char ? ) nil) ; accept word this time only
|
|
1135 ((= char ?i) ; accept and insert word into pers dict
|
|
1136 (process-send-string ispell-process (concat "*" word "\n"))
|
|
1137 (setq ispell-pdict-modified-p '(t)) ; dictionary modified!
|
|
1138 nil)
|
|
1139 ((or (= char ?a) (= char ?A)) ; accept word without insert
|
|
1140 (process-send-string ispell-process (concat "@" word "\n"))
|
|
1141 (if (null ispell-pdict-modified-p)
|
|
1142 (setq ispell-pdict-modified-p
|
|
1143 (list ispell-pdict-modified-p)))
|
|
1144 (if (= char ?A) 0)) ; return 0 for ispell-add buffer-local
|
|
1145 ((or (= char ?r) (= char ?R)) ; type in replacement
|
|
1146 (if (or (= char ?R) ispell-query-replace-choices)
|
|
1147 (list (read-string "Query-replacement for: " word) t)
|
|
1148 (cons (read-string "Replacement for: " word) nil)))
|
|
1149 ((or (= char ??)
|
|
1150 ;; XEmacs change: help-char may not be an int.
|
|
1151 (eq char (event-to-character
|
|
1152 (character-to-event help-char)))
|
|
1153 (= char ?\C-h))
|
|
1154 (ispell-help)
|
|
1155 t)
|
|
1156 ;; Quit and move point back.
|
|
1157 ((= char ?x)
|
|
1158 (ispell-pdict-save ispell-silently-savep)
|
|
1159 (message "Exited spell-checking")
|
|
1160 (setq ispell-quit t)
|
|
1161 nil)
|
|
1162 ;; Quit and preserve point.
|
|
1163 ((= char ?X)
|
|
1164 (ispell-pdict-save ispell-silently-savep)
|
2
|
1165 (message "%s"
|
0
|
1166 (substitute-command-keys
|
|
1167 (concat "Spell-checking suspended;"
|
|
1168 " use C-u \\[ispell-word] to resume")))
|
|
1169 (setq ispell-quit (max (point-min)
|
|
1170 (- (point) (length word))))
|
|
1171 nil)
|
|
1172 ((= char ?q)
|
|
1173 (if (y-or-n-p "Really kill Ispell process? ")
|
|
1174 (progn
|
|
1175 (ispell-kill-ispell t) ; terminate process.
|
|
1176 (setq ispell-quit (or (not ispell-checking-message)
|
|
1177 (point))
|
|
1178 ispell-pdict-modified-p nil))
|
|
1179 t)) ; continue if they don't quit.
|
|
1180 ((= char ?l)
|
|
1181 (let ((new-word (read-string
|
|
1182 "Lookup string (`*' is wildcard): "
|
|
1183 word))
|
|
1184 (new-line 2))
|
|
1185 (if new-word
|
|
1186 (progn
|
|
1187 (save-excursion
|
|
1188 (set-buffer (get-buffer-create
|
|
1189 ispell-choices-buffer))
|
|
1190 (erase-buffer)
|
|
1191 (setq count ?0
|
|
1192 skipped 0
|
|
1193 mode-line-format (concat
|
|
1194 "-- %b -- word: "
|
|
1195 new-word)
|
|
1196 miss (lookup-words new-word)
|
|
1197 choices miss)
|
|
1198 (while (and choices ; adjust choices window.
|
|
1199 (< (if (> (+ 7 (current-column)
|
|
1200 (length (car choices))
|
|
1201 (if (> count ?~) 3 0))
|
|
1202 (window-width))
|
|
1203 (progn
|
|
1204 (insert "\n")
|
|
1205 (setq new-line
|
|
1206 (1+ new-line)))
|
|
1207 new-line)
|
|
1208 max-lines))
|
|
1209 (while (memq count command-characters)
|
|
1210 (setq count (1+ count)
|
|
1211 skipped (1+ skipped)))
|
|
1212 (insert "(" count ") " (car choices) " ")
|
|
1213 (setq choices (cdr choices)
|
|
1214 count (1+ count)))
|
|
1215 (setq count (- count ?0 skipped)))
|
|
1216 (select-window (previous-window))
|
|
1217 (if (and (/= new-line line)
|
|
1218 (> (max line new-line)
|
|
1219 ispell-choices-win-default-height))
|
|
1220 (let* ((minh ispell-choices-win-default-height)
|
|
1221 (gr-bl (if (< line minh) ; blanks
|
|
1222 (- minh line)
|
|
1223 0))
|
|
1224 (shr-bl (if (< new-line minh) ; blanks
|
|
1225 (- minh new-line)
|
|
1226 0)))
|
|
1227 (if (> new-line line)
|
|
1228 (enlarge-window (- new-line line gr-bl))
|
|
1229 (shrink-window (- line new-line shr-bl)))
|
|
1230 (setq line new-line)))
|
|
1231 (select-window (next-window)))))
|
|
1232 t) ; reselect from new choices
|
|
1233 ((= char ?u)
|
|
1234 (process-send-string ispell-process
|
|
1235 (concat "*" (downcase word) "\n"))
|
|
1236 (setq ispell-pdict-modified-p '(t)) ; dictionary modified!
|
|
1237 nil)
|
|
1238 ((= char ?m) ; type in what to insert
|
|
1239 (process-send-string
|
|
1240 ispell-process (concat "*" (read-string "Insert: " word)
|
|
1241 "\n"))
|
|
1242 (setq ispell-pdict-modified-p '(t))
|
|
1243 (cons word nil))
|
|
1244 ((and (>= num 0) (< num count))
|
|
1245 (if ispell-query-replace-choices ; Query replace flag
|
|
1246 (list (nth num miss) 'query-replace)
|
|
1247 (nth num miss)))
|
|
1248 ((= char ?\C-l)
|
|
1249 (redraw-display) t)
|
|
1250 ((= char ?\C-r)
|
|
1251 (save-window-excursion (recursive-edit)) t)
|
|
1252 ((= char ?\C-z)
|
|
1253 (funcall (key-binding "\C-z"))
|
|
1254 t)
|
|
1255 (t (ding) t))))))
|
|
1256 result)
|
|
1257 ;; protected
|
|
1258 (if ispell-highlight-p ; unhighlight
|
|
1259 (save-window-excursion
|
|
1260 (select-window textwin)
|
|
1261 (ispell-highlight-spelling-error start end))))))
|
|
1262
|
|
1263
|
|
1264 ;;;###autoload
|
|
1265 (defun ispell-help ()
|
|
1266 "Display a list of the options available when a misspelling is encountered.
|
|
1267
|
|
1268 Selections are:
|
|
1269
|
|
1270 DIGIT: Replace the word with a digit offered in the *Choices* buffer.
|
|
1271 SPC: Accept word this time.
|
|
1272 `i': Accept word and insert into private dictionary.
|
|
1273 `a': Accept word for this session.
|
|
1274 `A': Accept word and place in `buffer-local dictionary'.
|
|
1275 `r': Replace word with typed-in value. Rechecked.
|
|
1276 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
|
|
1277 `?': Show these commands.
|
|
1278 `x': Exit spelling buffer. Move cursor to original point.
|
|
1279 `X': Exit spelling buffer. Leaves cursor at the current point, and permits
|
|
1280 the aborted check to be completed later.
|
|
1281 `q': Quit spelling session (Kills ispell process).
|
|
1282 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
|
|
1283 `u': Like `i', but the word is lower-cased first.
|
|
1284 `m': Like `i', but allows one to include dictionary completion information.
|
|
1285 `C-l': redraws screen
|
|
1286 `C-r': recursive edit
|
|
1287 `C-z': suspend emacs or iconify frame"
|
|
1288
|
|
1289 (let ((help-1 (concat "[r/R]eplace word; [a/A]ccept for this session; "
|
|
1290 "[i]nsert into private dictionary"))
|
|
1291 (help-2 (concat "[l]ook a word up in alternate dictionary; "
|
|
1292 "e[x/X]it; [q]uit session"))
|
|
1293 (help-3 (concat "[u]ncapitalized insert into dictionary. "
|
|
1294 "Type 'C-h d ispell-help' for more help")))
|
|
1295 (save-window-excursion
|
|
1296 (if ispell-help-in-bufferp
|
|
1297 (progn
|
|
1298 (ispell-overlay-window 4)
|
|
1299 (switch-to-buffer (get-buffer-create "*Ispell Help*"))
|
|
1300 (insert (concat help-1 "\n" help-2 "\n" help-3))
|
|
1301 (sit-for 5)
|
|
1302 (kill-buffer "*Ispell Help*"))
|
|
1303 (select-window (minibuffer-window))
|
|
1304 ;;(enlarge-window 2)
|
|
1305 (erase-buffer)
|
|
1306 (cond ((and (< emacs-minor-version 12)
|
|
1307 (string-match "Lucid" emacs-version))
|
|
1308 (message help-3)
|
|
1309 (enlarge-window 1)
|
|
1310 (message help-2)
|
|
1311 (enlarge-window 1)
|
|
1312 (message help-1)
|
|
1313 (goto-char (point-min)))
|
|
1314 (t
|
|
1315 (if (string-lessp "19" emacs-version)
|
|
1316 (message nil))
|
|
1317 (enlarge-window 2)
|
2
|
1318 ;; Make sure we display the minibuffer
|
|
1319 ;; in this window, not some other.
|
100
|
1320 (if (fboundp 'set-minibuffer-window)
|
|
1321 (set-minibuffer-window (selected-window)))
|
0
|
1322 (insert (concat help-1 "\n" help-2 "\n" help-3))))
|
|
1323 (sit-for 5)
|
|
1324 (erase-buffer)))))
|
|
1325
|
|
1326
|
|
1327 (defun lookup-words (word &optional lookup-dict)
|
|
1328 "Look up word in word-list dictionary.
|
|
1329 A `*' serves as a wild card. If no wild cards, `look' is used if it exists.
|
|
1330 Otherwise the variable `ispell-grep-command' contains the command used to
|
|
1331 search for the words (usually egrep).
|
|
1332
|
|
1333 Optional second argument contains the dictionary to use; the default is
|
|
1334 `ispell-alternate-dictionary'."
|
|
1335 ;; We don't use the filter for this function, rather the result is written
|
|
1336 ;; into a buffer. Hence there is no need to save the filter values.
|
|
1337 (if (null lookup-dict)
|
|
1338 (setq lookup-dict ispell-alternate-dictionary))
|
|
1339
|
|
1340 (let* ((process-connection-type ispell-use-ptys-p)
|
|
1341 (wild-p (string-match "\\*" word))
|
|
1342 (look-p (and ispell-look-p ; Only use look for an exact match.
|
|
1343 (or ispell-have-new-look (not wild-p))))
|
|
1344 (ispell-grep-buffer (get-buffer-create "*Ispell-Temp*")) ; result buf
|
|
1345 (prog (if look-p ispell-look-command ispell-grep-command))
|
|
1346 (args (if look-p ispell-look-options ispell-grep-options))
|
|
1347 status results loc)
|
|
1348 (unwind-protect
|
|
1349 (save-window-excursion
|
|
1350 (message "Starting \"%s\" process..." (file-name-nondirectory prog))
|
|
1351 (set-buffer ispell-grep-buffer)
|
|
1352 (if look-p
|
|
1353 nil
|
|
1354 ;; convert * to .*
|
|
1355 (insert "^" word "$")
|
|
1356 (while (search-backward "*" nil t) (insert "."))
|
|
1357 (setq word (buffer-string))
|
|
1358 (erase-buffer))
|
|
1359 (setq status (call-process prog nil t nil args word lookup-dict))
|
|
1360 ;; grep returns status 1 and no output when word not found, which
|
|
1361 ;; is a perfectly normal thing.
|
|
1362 (if (stringp status)
|
|
1363 (setq results (cons (format "error: %s exited with signal %s"
|
|
1364 (file-name-nondirectory prog) status)
|
|
1365 results))
|
|
1366 ;; else collect words into `results' in FIFO order
|
|
1367 (goto-char (point-max))
|
|
1368 ;; assure we've ended with \n
|
|
1369 (or (bobp) (= (preceding-char) ?\n) (insert ?\n))
|
|
1370 (while (not (bobp))
|
|
1371 (setq loc (point))
|
|
1372 (forward-line -1)
|
|
1373 (setq results (cons (buffer-substring (point) (1- loc))
|
|
1374 results)))))
|
|
1375 ;; protected
|
|
1376 (kill-buffer ispell-grep-buffer)
|
|
1377 (if (and results (string-match ".+: " (car results)))
|
|
1378 (error "%s error: %s" ispell-grep-command (car results))))
|
|
1379 results))
|
|
1380
|
|
1381
|
|
1382 ;;; "ispell-filter" is a list of output lines from the generating function.
|
|
1383 ;;; Each full line (ending with \n) is a separate item on the list.
|
|
1384 ;;; "output" can contain multiple lines, part of a line, or both.
|
|
1385 ;;; "start" and "end" are used to keep bounds on lines when "output" contains
|
|
1386 ;;; multiple lines.
|
|
1387 ;;; "ispell-filter-continue" is true when we have received only part of a
|
|
1388 ;;; line as output from a generating function ("output" did not end with \n)
|
2
|
1389 ;;; THIS FUNCTION WILL FAIL IF THE PROCESS OUTPUT DOESN'T END WITH \n!
|
0
|
1390 ;;; This is the case when a process dies or fails. The default behavior
|
|
1391 ;;; in this case treats the next input received as fresh input.
|
|
1392
|
|
1393 (defun ispell-filter (process output)
|
|
1394 "Output filter function for ispell, grep, and look."
|
|
1395 (let ((start 0)
|
|
1396 (continue t)
|
|
1397 end)
|
|
1398 (while continue
|
|
1399 (setq end (string-match "\n" output start)) ; get text up to the newline.
|
|
1400 ;; If we get out of sync and ispell-filter-continue is asserted when we
|
|
1401 ;; are not continuing, treat the next item as a separate list. When
|
|
1402 ;; ispell-filter-continue is asserted, ispell-filter *should* always be a
|
|
1403 ;; list!
|
|
1404
|
|
1405 ;; Continue with same line (item)?
|
|
1406 (if (and ispell-filter-continue ispell-filter (listp ispell-filter))
|
|
1407 ;; Yes. Add it to the prev item
|
|
1408 (setcar ispell-filter
|
|
1409 (concat (car ispell-filter) (substring output start end)))
|
|
1410 ;; No. This is a new line and item.
|
|
1411 (setq ispell-filter
|
|
1412 (cons (substring output start end) ispell-filter)))
|
|
1413 (if (null end)
|
|
1414 ;; We've completed reading the output, but didn't finish the line.
|
|
1415 (setq ispell-filter-continue t continue nil)
|
|
1416 ;; skip over newline, this line complete.
|
|
1417 (setq ispell-filter-continue nil end (1+ end))
|
|
1418 (if (= end (length output)) ; No more lines in output
|
|
1419 (setq continue nil) ; so we can exit the filter.
|
|
1420 (setq start end)))))) ; else move start to next line of input
|
|
1421
|
|
1422
|
|
1423 ;;; This function destroys the mark location if it is in the word being
|
|
1424 ;;; highlighted.
|
|
1425 (defun ispell-highlight-spelling-error-generic (start end &optional highlight)
|
|
1426 "Highlight the word from START to END with a kludge using `inverse-video'.
|
|
1427 When the optional third arg HIGHLIGHT is set, the word is highlighted;
|
|
1428 otherwise it is displayed normally."
|
|
1429 (let ((modified (buffer-modified-p)) ; don't allow this fn to modify buffer
|
|
1430 (buffer-read-only nil) ; Allow highlighting read-only buffers.
|
|
1431 (text (buffer-substring start end)) ; Save highlight region
|
|
1432 (inhibit-quit t) ; inhibit interrupt processing here.
|
|
1433 (buffer-undo-list t)) ; don't clutter the undo list.
|
|
1434 (delete-region start end)
|
|
1435 (insert-char ? (- end start)) ; mimimize amount of redisplay
|
|
1436 (sit-for 0) ; update display
|
|
1437 (if highlight (setq inverse-video (not inverse-video))) ; toggle video
|
|
1438 (delete-region start end) ; delete whitespace
|
|
1439 (insert text) ; insert text in inverse video.
|
|
1440 (sit-for 0) ; update display showing inverse video.
|
|
1441 (if highlight (setq inverse-video (not inverse-video))) ; toggle video
|
|
1442 (set-buffer-modified-p modified))) ; don't modify if flag not set.
|
|
1443
|
|
1444
|
|
1445 (defun ispell-highlight-spelling-error-lucid (start end &optional highlight)
|
|
1446 "Highlight the word from START to END using `isearch-highlight'.
|
|
1447 When the optional third arg HIGHLIGHT is set, the word is highlighted,
|
|
1448 otherwise it is displayed normally."
|
|
1449 (if highlight
|
|
1450 (isearch-highlight start end)
|
|
1451 (isearch-dehighlight t))
|
|
1452 ;;(sit-for 0)
|
|
1453 )
|
|
1454
|
|
1455
|
|
1456 (defun ispell-highlight-spelling-error-overlay (start end &optional highlight)
|
|
1457 "Highlight the word from START to END using overlays.
|
|
1458 When the optional third arg HIGHLIGHT is set, the word is highlighted
|
|
1459 otherwise it is displayed normally.
|
|
1460
|
|
1461 The variable `ispell-highlight-face' selects the face to use for highlighting."
|
|
1462 (if highlight
|
|
1463 (progn
|
|
1464 (setq ispell-overlay (make-overlay start end))
|
|
1465 (overlay-put ispell-overlay 'face ispell-highlight-face))
|
|
1466 (delete-overlay ispell-overlay)))
|
|
1467
|
|
1468
|
|
1469 (defun ispell-highlight-spelling-error (start end &optional highlight)
|
|
1470 (cond
|
|
1471 ((string-match "Lucid" emacs-version)
|
|
1472 (ispell-highlight-spelling-error-lucid start end highlight))
|
|
1473 ((and (string-lessp "19" emacs-version)
|
|
1474 (featurep 'faces) window-system)
|
|
1475 (ispell-highlight-spelling-error-overlay start end highlight))
|
|
1476 (t (ispell-highlight-spelling-error-generic start end highlight))))
|
|
1477
|
|
1478
|
|
1479 (defun ispell-overlay-window (height)
|
|
1480 "Create a window covering the top HEIGHT lines of the current window.
|
|
1481 Ensure that the line above point is still visible but otherwise avoid
|
|
1482 scrolling the current window. Leave the new window selected."
|
|
1483 (save-excursion
|
|
1484 (let ((oldot (save-excursion (forward-line -1) (point)))
|
|
1485 (top (save-excursion (move-to-window-line height) (point))))
|
|
1486 ;; If line above old point (line starting at olddot) would be
|
|
1487 ;; hidden by new window, scroll it to just below new win
|
|
1488 ;; otherwise set top line of other win so it doesn't scroll.
|
|
1489 (if (< oldot top) (setq top oldot))
|
|
1490 ;; NB: Lemacs 19.9 bug: If a window of size N (N includes the mode
|
|
1491 ;; line) is demanded, the last line is not visible.
|
|
1492 ;; At least this happens on AIX 3.2, lemacs w/ Motif, font 9x15.
|
|
1493 ;; So we increment the height for this case.
|
|
1494 (if (string-match "19\.9.*Lucid" (emacs-version))
|
|
1495 (setq height (1+ height)))
|
|
1496 (split-window nil height)
|
|
1497 (set-window-start (next-window) top))))
|
|
1498
|
|
1499
|
|
1500 ;;; Should we add a compound word match return value?
|
|
1501 (defun ispell-parse-output (output)
|
|
1502 "Parse the OUTPUT string from Ispell and return:
|
|
1503 1: t for an exact match.
|
|
1504 2: A string containing the root word for a match via suffix removal.
|
|
1505 3: A list of possible correct spellings of the format:
|
|
1506 '(\"ORIGINAL-WORD\" OFFSET MISS-LIST GUESS-LIST)
|
|
1507 ORIGINAL-WORD is a string of the possibly misspelled word.
|
|
1508 OFFSET is an integer giving the line offset of the word.
|
|
1509 MISS-LIST and GUESS-LIST are possibly null lists of guesses and misses."
|
|
1510 (cond
|
|
1511 ((string= output "") t) ; for startup with pipes...
|
|
1512 ((string= output "*") t) ; exact match
|
|
1513 ((string= output "-") t) ; compound word match
|
|
1514 ((string= (substring output 0 1) "+") ; found cuz of root word
|
|
1515 (substring output 2)) ; return root word
|
|
1516 (t ; need to process &, ?, and #'s
|
|
1517 (let ((type (substring output 0 1)) ; &, ?, or #
|
|
1518 (original-word (substring output 2 (string-match " " output 2)))
|
|
1519 (cur-count 0) ; contains number of misses + guesses
|
|
1520 count miss-list guess-list offset)
|
|
1521 (setq output (substring output (match-end 0))) ; skip over misspelling
|
|
1522 (if (string= type "#")
|
|
1523 (setq count 0) ; no misses for type #
|
|
1524 (setq count (string-to-int output) ; get number of misses.
|
|
1525 output (substring output (1+ (string-match " " output 1)))))
|
|
1526 (setq offset (string-to-int output))
|
|
1527 (if (string= type "#") ; No miss or guess list.
|
|
1528 (setq output nil)
|
|
1529 (setq output (substring output (1+ (string-match " " output 1)))))
|
|
1530 (while output
|
|
1531 (let ((end (string-match ", \\|\\($\\)" output))) ; end of miss/guess.
|
|
1532 (setq cur-count (1+ cur-count))
|
|
1533 (if (> cur-count count)
|
|
1534 (setq guess-list (cons (substring output 0 end) guess-list))
|
|
1535 (setq miss-list (cons (substring output 0 end) miss-list)))
|
|
1536 (if (match-end 1) ; True only when at end of line.
|
|
1537 (setq output nil) ; no more misses or guesses
|
|
1538 (setq output (substring output (+ end 2))))))
|
|
1539 (list original-word offset miss-list guess-list)))))
|
|
1540
|
|
1541
|
|
1542 (defun check-ispell-version ()
|
|
1543 ;; This is a little wasteful as we actually launch ispell twice: once
|
|
1544 ;; to make sure it's the right version, and once for real. But people
|
|
1545 ;; get confused by version mismatches *all* the time (and I've got the
|
|
1546 ;; email to prove it) so I think this is worthwhile. And the -v[ersion]
|
|
1547 ;; option is the only way I can think of to do this that works with
|
|
1548 ;; all versions, since versions earlier than 3.0.09 didn't identify
|
|
1549 ;; themselves on startup.
|
|
1550 (save-excursion
|
|
1551 (let ((case-fold-search t)
|
|
1552 ;; avoid bugs when syntax of `.' changes in various default modes
|
|
1553 (default-major-mode 'fundamental-mode)
|
|
1554 status)
|
|
1555 (set-buffer (get-buffer-create " *ispell-tmp*"))
|
|
1556 (erase-buffer)
|
|
1557 (setq status (call-process ispell-program-name nil t nil "-v"))
|
|
1558 (goto-char (point-min))
|
|
1559 (if (not (memq status '(0 nil)))
|
|
1560 (error "%s exited with %s %s" ispell-program-name
|
|
1561 (if (stringp status) "signal" "code") status))
|
|
1562 (if (not (re-search-forward
|
|
1563 (concat "\\b\\("
|
|
1564 (regexp-quote (car ispell-required-version))
|
|
1565 "\\)\\([0-9]*\\)\\b")
|
|
1566 nil t))
|
|
1567 (error
|
|
1568 "%s version %s* is required: try renaming ispell4.el to ispell.el"
|
|
1569 ispell-program-name (car ispell-required-version))
|
|
1570 ;; check that it is the correct version.
|
|
1571 (if (< (car (read-from-string (buffer-substring
|
|
1572 (match-beginning 2) (match-end 2))))
|
|
1573 (car (cdr ispell-required-version)))
|
|
1574 (setq ispell-offset 0)))
|
|
1575 (kill-buffer (current-buffer)))))
|
|
1576
|
|
1577
|
|
1578 (defun ispell-init-process ()
|
|
1579 "Check status of Ispell process and start if necessary."
|
|
1580 (if (and ispell-process
|
|
1581 (eq (process-status ispell-process) 'run)
|
|
1582 ;; If we're using a personal dictionary, assure
|
|
1583 ;; we're in the same default directory!
|
|
1584 (or (not ispell-personal-dictionary)
|
|
1585 (equal ispell-process-directory default-directory)))
|
|
1586 (setq ispell-filter nil ispell-filter-continue nil)
|
|
1587 ;; may need to restart to select new personal dictionary.
|
|
1588 (ispell-kill-ispell t)
|
|
1589 (message "Starting new Ispell process...")
|
|
1590 (sit-for 0)
|
|
1591 (check-ispell-version)
|
|
1592 (setq ispell-process
|
|
1593 (let ((process-connection-type ispell-use-ptys-p))
|
|
1594 (apply 'start-process
|
|
1595 "ispell" nil ispell-program-name
|
|
1596 "-a" ; accept single input lines
|
|
1597 "-m" ; make root/affix combos not in dict
|
|
1598 (let (args)
|
|
1599 ;; Local dictionary becomes the global dictionary in use.
|
|
1600 (if ispell-local-dictionary
|
|
1601 (setq ispell-dictionary ispell-local-dictionary))
|
|
1602 (setq args (ispell-get-ispell-args))
|
|
1603 (if ispell-dictionary ; use specified dictionary
|
|
1604 (setq args
|
|
1605 (append (list "-d" ispell-dictionary) args)))
|
|
1606 (if ispell-personal-dictionary ; use specified pers dict
|
|
1607 (setq args
|
|
1608 (append args
|
|
1609 (list "-p"
|
|
1610 (expand-file-name
|
|
1611 ispell-personal-dictionary)))))
|
|
1612 (setq args (append args ispell-extra-args))
|
|
1613 args)))
|
|
1614 ispell-filter nil
|
|
1615 ispell-filter-continue nil
|
|
1616 ispell-process-directory default-directory)
|
|
1617 (set-process-filter ispell-process 'ispell-filter)
|
|
1618 (accept-process-output ispell-process) ; Get version ID line
|
|
1619 (cond ((null ispell-filter)
|
|
1620 (error "%s did not output version line" ispell-program-name))
|
|
1621 ((and
|
|
1622 (stringp (car ispell-filter))
|
|
1623 (if (string-match "warning: " (car ispell-filter))
|
|
1624 (progn
|
|
1625 (accept-process-output ispell-process 5) ; 1st was warn msg.
|
|
1626 (stringp (car ispell-filter)))
|
|
1627 (null (cdr ispell-filter)))
|
|
1628 (string-match "^@(#) " (car ispell-filter)))
|
|
1629 ;; got the version line as expected (we already know it's the right
|
|
1630 ;; version, so don't bother checking again.)
|
|
1631 nil)
|
|
1632 (t
|
|
1633 ;; Otherwise, it must be an error message. Show the user.
|
|
1634 ;; But first wait to see if some more output is going to arrive.
|
|
1635 ;; Otherwise we get cool errors like "Can't open ".
|
|
1636 (sleep-for 1)
|
|
1637 (accept-process-output)
|
|
1638 (error "%s" (mapconcat 'identity ispell-filter "\n"))))
|
|
1639 (setq ispell-filter nil) ; Discard version ID line
|
|
1640 (let ((extended-char-mode (ispell-get-extended-character-mode)))
|
|
1641 (if extended-char-mode
|
|
1642 (process-send-string ispell-process
|
|
1643 (concat extended-char-mode "\n"))))
|
|
1644 (process-kill-without-query ispell-process)))
|
|
1645
|
|
1646 ;;;###autoload
|
|
1647 (defun ispell-kill-ispell (&optional no-error)
|
|
1648 "Kill current Ispell process (so that you may start a fresh one).
|
|
1649 With NO-ERROR, just return non-nil if there was no Ispell running."
|
|
1650 (interactive)
|
|
1651 (if (not (and ispell-process
|
|
1652 (eq (process-status ispell-process) 'run)))
|
|
1653 (or no-error
|
|
1654 (error "There is no ispell process running!"))
|
|
1655 (kill-process ispell-process)
|
|
1656 (setq ispell-process nil)
|
|
1657 (message "Ispell process killed")
|
|
1658 nil))
|
|
1659
|
|
1660
|
|
1661 ;;; ispell-change-dictionary is set in some people's hooks. Maybe this should
|
|
1662 ;;; call ispell-init-process rather than wait for a spell checking command?
|
|
1663
|
|
1664 ;;;###autoload
|
|
1665 (defun ispell-change-dictionary (dict &optional arg)
|
|
1666 "Change `ispell-dictionary' (q.v.) and kill old Ispell process.
|
|
1667 A new one will be started as soon as necessary.
|
|
1668
|
|
1669 By just answering RET you can find out what the current dictionary is.
|
|
1670
|
|
1671 With prefix argument, set the default directory."
|
|
1672 (interactive
|
|
1673 (list (completing-read
|
|
1674 "Use new dictionary (RET for current, SPC to complete): "
|
|
1675 (cons (cons "default" nil) ispell-dictionary-alist) nil t)
|
|
1676 current-prefix-arg))
|
|
1677 (if (equal dict "default") (setq dict nil))
|
|
1678 ;; This relies on completing-read's bug of returning "" for no match
|
|
1679 (cond ((equal dict "")
|
|
1680 (message "Using %s dictionary"
|
|
1681 (or ispell-local-dictionary ispell-dictionary "default")))
|
|
1682 ((and (equal dict ispell-dictionary)
|
|
1683 (or (null ispell-local-dictionary)
|
|
1684 (equal dict ispell-local-dictionary)))
|
|
1685 ;; Specified dictionary is the default already. No-op
|
|
1686 (and (interactive-p)
|
|
1687 (message "No change, using %s dictionary" (or dict "default"))))
|
|
1688 (t ; reset dictionary!
|
|
1689 (if (assoc dict ispell-dictionary-alist)
|
|
1690 (progn
|
|
1691 (if (or arg (null dict)) ; set default dictionary
|
|
1692 (setq ispell-dictionary dict))
|
|
1693 (if (null arg) ; set local dictionary
|
|
1694 (setq ispell-local-dictionary dict)))
|
|
1695 (error "Illegal dictionary: %s" dict))
|
|
1696 (ispell-kill-ispell t)
|
|
1697 (message "(Next %sIspell command will use %s dictionary)"
|
|
1698 (cond ((equal ispell-local-dictionary ispell-dictionary)
|
|
1699 "")
|
|
1700 (arg "global ")
|
|
1701 (t "local "))
|
|
1702 (or (if (or (equal ispell-local-dictionary ispell-dictionary)
|
|
1703 (null arg))
|
|
1704 ispell-local-dictionary
|
|
1705 ispell-dictionary)
|
|
1706 "default")))))
|
|
1707
|
|
1708
|
|
1709 ;;; Spelling of comments are checked when ispell-check-comments is non-nil.
|
|
1710
|
|
1711 ;;;###autoload
|
|
1712 (defun ispell-region (reg-start reg-end)
|
|
1713 "Interactively check a region for spelling errors."
|
|
1714 (interactive "r") ; Don't flag errors on read-only bufs.
|
|
1715 (ispell-accept-buffer-local-defs) ; set up dictionary, local words, etc.
|
|
1716 (unwind-protect
|
|
1717 (save-excursion
|
|
1718 (message "Spell checking %s using %s dictionary..."
|
|
1719 (if (and (= reg-start (point-min)) (= reg-end (point-max)))
|
|
1720 (buffer-name) "region")
|
|
1721 (or ispell-dictionary "default"))
|
|
1722 ;; Returns cursor to original location.
|
|
1723 (save-window-excursion
|
|
1724 (goto-char reg-start)
|
|
1725 (let ((transient-mark-mode nil)
|
|
1726 ref-type)
|
|
1727 (while (and (not ispell-quit) (< (point) reg-end))
|
|
1728 (let ((start (point))
|
|
1729 (offset-change 0)
|
|
1730 (end (save-excursion (end-of-line) (min (point) reg-end)))
|
|
1731 (ispell-casechars (ispell-get-casechars))
|
|
1732 string)
|
|
1733 (cond ; LOOK AT THIS LINE AND SKIP OR PROCESS
|
|
1734 ((eolp) ; END OF LINE, just go to next line.
|
|
1735 (forward-char 1))
|
|
1736 ((and (null ispell-check-comments) ; SKIPPING COMMENTS
|
|
1737 comment-start ; skip comments that start on the line.
|
|
1738 (search-forward comment-start end t)) ; or found here.
|
|
1739 (if (= (- (point) start) (length comment-start))
|
|
1740 ;; comment starts the line. Skip entire line or region
|
|
1741 (if (string= "" comment-end) ; skip to next line
|
|
1742 (beginning-of-line 2) ; or jump to comment end.
|
|
1743 (search-forward comment-end reg-end 'limit))
|
|
1744 ;; Comment later in line. Check spelling before comment.
|
|
1745 (let ((limit (- (point) (length comment-start))))
|
|
1746 (goto-char (1- limit))
|
|
1747 (if (looking-at "\\\\") ; "quoted" comment, don't skip
|
|
1748 ;; quoted comment. Skip over comment-start
|
|
1749 (if (= start (1- limit))
|
|
1750 (setq limit (+ limit (length comment-start)))
|
|
1751 (setq limit (1- limit))))
|
|
1752 (goto-char start)
|
|
1753 ;; Only check when "casechars" or math before comment
|
|
1754 (if (or (re-search-forward ispell-casechars limit t)
|
|
1755 (re-search-forward "[][()$]" limit t))
|
|
1756 (setq string
|
|
1757 (concat "^" (buffer-substring start limit)
|
|
1758 "\n")
|
|
1759 offset-change (- offset-change ispell-offset)))
|
|
1760 (goto-char limit))))
|
|
1761 ((looking-at "[---#@*+!%~^]") ; SKIP SPECIAL ISPELL CHARACTERS
|
|
1762 (forward-char 1))
|
|
1763 ((or (and ispell-skip-tib ; SKIP TIB REFERENCES OR SGML MARKUP
|
|
1764 (re-search-forward ispell-tib-ref-beginning end t)
|
|
1765 (setq ref-type 'tib))
|
|
1766 (and ispell-skip-sgml
|
2
|
1767 (re-search-forward "[<&]" end t)
|
0
|
1768 (setq ref-type 'sgml)))
|
|
1769 (if (or (and (eq 'tib ref-type) ; tib tag is 2 chars.
|
|
1770 (= (- (point) 2) start))
|
|
1771 (and (eq 'sgml ref-type) ; sgml skips 1 char.
|
|
1772 (= (- (point) 1) start)))
|
|
1773 ;; Skip to end of reference, not necessarily on this line
|
|
1774 ;; Return an error if tib/sgml reference not found
|
|
1775 (if (or
|
|
1776 (and
|
|
1777 (eq 'tib ref-type)
|
|
1778 (not
|
|
1779 (re-search-forward ispell-tib-ref-end reg-end t)))
|
|
1780 (and (eq 'sgml ref-type)
|
2
|
1781 (not (re-search-forward "[>;]" reg-end t))))
|
0
|
1782 (progn
|
|
1783 (ispell-pdict-save ispell-silently-savep)
|
|
1784 (ding)
|
|
1785 (message
|
|
1786 (concat
|
|
1787 "Open tib or SGML command. Fix buffer or set "
|
|
1788 (if (eq 'tib ref-type)
|
|
1789 "ispell-skip-tib"
|
|
1790 "ispell-skip-sgml")
|
|
1791 " to nil"))
|
|
1792 ;; keep cursor at error location
|
|
1793 (setq ispell-quit (- (point) 2))))
|
|
1794 ;; Check spelling between reference and start of the line.
|
|
1795 (let ((limit (- (point) (if (eq 'tib ref-type) 2 1))))
|
|
1796 (goto-char start)
|
|
1797 (if (or (re-search-forward ispell-casechars limit t)
|
|
1798 (re-search-forward "[][()$]" limit t))
|
|
1799 (setq string
|
|
1800 (concat "^" (buffer-substring start limit)
|
|
1801 "\n")
|
|
1802 offset-change (- offset-change ispell-offset)))
|
|
1803 (goto-char limit))))
|
|
1804 ((or (re-search-forward ispell-casechars end t) ; TEXT EXISTS
|
|
1805 (re-search-forward "[][()$]" end t)) ; or MATH COMMANDS
|
|
1806 (setq string (concat "^" (buffer-substring start end) "\n")
|
|
1807 offset-change (- offset-change ispell-offset))
|
|
1808 (goto-char end))
|
|
1809 (t (beginning-of-line 2))) ; EMPTY LINE, skip it.
|
|
1810
|
|
1811 (setq end (point)) ; "end" tracks end of region to check.
|
|
1812
|
|
1813 (if string ; there is something to spell!
|
|
1814 (let (poss)
|
|
1815 ;; send string to spell process and get input.
|
|
1816 (process-send-string ispell-process string)
|
|
1817 (while (progn
|
|
1818 (accept-process-output ispell-process)
|
|
1819 ;; Last item of output contains a blank line.
|
|
1820 (not (string= "" (car ispell-filter)))))
|
|
1821 ;; parse all inputs from the stream one word at a time.
|
|
1822 ;; Place in FIFO order and remove the blank item.
|
|
1823 (setq ispell-filter (nreverse (cdr ispell-filter)))
|
|
1824 (while (and (not ispell-quit) ispell-filter)
|
|
1825 (setq poss (ispell-parse-output (car ispell-filter)))
|
|
1826 (if (listp poss) ; spelling error occurred.
|
|
1827 (let* ((word-start (+ start offset-change
|
|
1828 (car (cdr poss))))
|
|
1829 (word-end (+ word-start
|
|
1830 (length (car poss))))
|
|
1831 replace)
|
|
1832 (goto-char word-start)
|
|
1833 ;; Adjust the horizontal scroll & point
|
|
1834 (ispell-horiz-scroll)
|
|
1835 (goto-char word-end)
|
|
1836 (ispell-horiz-scroll)
|
|
1837 (goto-char word-start)
|
|
1838 (ispell-horiz-scroll)
|
|
1839 (if (/= word-end
|
|
1840 (progn
|
|
1841 (search-forward (car poss) word-end t)
|
|
1842 (point)))
|
|
1843 ;; This occurs due to filter pipe problems
|
|
1844 (error
|
|
1845 (concat "Ispell misalignment: word "
|
|
1846 "`%s' point %d; please retry")
|
|
1847 (car poss) word-start))
|
2
|
1848 (if (not (pos-visible-in-window-p))
|
|
1849 (sit-for 0))
|
0
|
1850 (if ispell-keep-choices-win
|
|
1851 (setq replace
|
|
1852 (ispell-command-loop
|
|
1853 (car (cdr (cdr poss)))
|
|
1854 (car (cdr (cdr (cdr poss))))
|
|
1855 (car poss) word-start word-end))
|
|
1856 (save-window-excursion
|
|
1857 (setq replace
|
|
1858 (ispell-command-loop
|
|
1859 (car (cdr (cdr poss)))
|
|
1860 (car (cdr (cdr (cdr poss))))
|
|
1861 (car poss) word-start word-end))))
|
|
1862 (cond
|
|
1863 ((and replace (listp replace))
|
|
1864 ;; REPLACEMENT WORD entered. Recheck line
|
|
1865 ;; starting with the replacement word.
|
|
1866 (setq ispell-filter nil
|
|
1867 string (buffer-substring word-start
|
|
1868 word-end))
|
|
1869 (let ((change (- (length (car replace))
|
|
1870 (length (car poss)))))
|
|
1871 ;; adjust regions
|
|
1872 (setq reg-end (+ reg-end change)
|
|
1873 offset-change (+ offset-change
|
|
1874 change)))
|
|
1875 (if (not (equal (car replace) (car poss)))
|
|
1876 (progn
|
|
1877 (delete-region word-start word-end)
|
|
1878 (insert (car replace))))
|
|
1879 ;; I only need to recheck typed-in replacements
|
|
1880 (if (not (eq 'query-replace
|
|
1881 (car (cdr replace))))
|
|
1882 (backward-char (length (car replace))))
|
|
1883 (setq end (point)) ; reposition for recheck
|
|
1884 ;; when second arg exists, query-replace, saving regions
|
|
1885 (if (car (cdr replace))
|
|
1886 (unwind-protect
|
|
1887 (save-window-excursion
|
|
1888 (set-marker
|
|
1889 ispell-query-replace-marker reg-end)
|
|
1890 ;; Assume case-replace &
|
|
1891 ;; case-fold-search correct?
|
|
1892 (query-replace string (car replace)
|
|
1893 t))
|
|
1894 (setq reg-end
|
|
1895 (marker-position
|
|
1896 ispell-query-replace-marker))
|
|
1897 (set-marker ispell-query-replace-marker
|
|
1898 nil))))
|
|
1899 ((or (null replace)
|
|
1900 (equal 0 replace)) ; ACCEPT/INSERT
|
|
1901 (if (equal 0 replace) ; BUFFER-LOCAL DICT ADD
|
|
1902 (setq reg-end
|
|
1903 (ispell-add-per-file-word-list
|
|
1904 (car poss) reg-end)))
|
|
1905 ;; This avoids pointing out the word that was
|
|
1906 ;; just accepted (via 'i' or 'a') if it follows
|
|
1907 ;; on the same line.
|
|
1908 ;; Redo check following the accepted word.
|
|
1909 (if (and ispell-pdict-modified-p
|
|
1910 (listp ispell-pdict-modified-p))
|
|
1911 ;; Word accepted. Recheck line.
|
|
1912 (setq ispell-pdict-modified-p ; update flag
|
|
1913 (car ispell-pdict-modified-p)
|
|
1914 ispell-filter nil ; discontinue check
|
|
1915 end word-start))) ; reposition loc.
|
|
1916 (replace ; STRING REPLACEMENT for this word.
|
|
1917 (delete-region word-start word-end)
|
|
1918 (insert replace)
|
|
1919 (let ((change (- (length replace)
|
|
1920 (length (car poss)))))
|
|
1921 (setq reg-end (+ reg-end change)
|
|
1922 offset-change (+ offset-change change)
|
|
1923 end (+ end change)))))
|
|
1924 (if (not ispell-quit)
|
2
|
1925 (message "Continuing spelling check using %s dictionary..."
|
|
1926 (or ispell-dictionary "default")))
|
0
|
1927 (sit-for 0)))
|
|
1928 ;; finished with line!
|
|
1929 (setq ispell-filter (cdr ispell-filter)))))
|
|
1930 (goto-char end)))))
|
|
1931 (not ispell-quit))
|
|
1932 ;; protected
|
|
1933 (if (get-buffer ispell-choices-buffer)
|
|
1934 (kill-buffer ispell-choices-buffer))
|
|
1935 (if ispell-quit
|
|
1936 (progn
|
|
1937 ;; preserve or clear the region for ispell-continue.
|
|
1938 (if (not (numberp ispell-quit))
|
|
1939 (set-marker ispell-region-end nil)
|
|
1940 ;; Enable ispell-continue.
|
|
1941 (set-marker ispell-region-end reg-end)
|
|
1942 (goto-char ispell-quit))
|
|
1943 ;; Check for aborting
|
|
1944 (if (and ispell-checking-message (numberp ispell-quit))
|
|
1945 (progn
|
|
1946 (setq ispell-quit nil)
|
|
1947 (error "Message send aborted.")))
|
|
1948 (setq ispell-quit nil))
|
|
1949 (set-marker ispell-region-end nil)
|
|
1950 ;; Only save if successful exit.
|
|
1951 (ispell-pdict-save ispell-silently-savep)
|
|
1952 (message "Spell-checking done"))))
|
|
1953
|
|
1954
|
|
1955
|
|
1956 ;;;###autoload
|
|
1957 (defun ispell-buffer ()
|
|
1958 "Check the current buffer for spelling errors interactively."
|
|
1959 (interactive)
|
|
1960 (ispell-region (point-min) (point-max)))
|
|
1961
|
|
1962
|
|
1963 ;;;###autoload
|
|
1964 (defun ispell-continue ()
|
|
1965 (interactive)
|
|
1966 "Continue a spelling session after making some changes."
|
|
1967 (if (not (marker-position ispell-region-end))
|
|
1968 (message "No session to continue. Use 'X' command when checking!")
|
|
1969 (if (not (equal (marker-buffer ispell-region-end) (current-buffer)))
|
|
1970 (message "Must continue ispell from buffer %s"
|
|
1971 (buffer-name (marker-buffer ispell-region-end)))
|
|
1972 (ispell-region (point) (marker-position ispell-region-end)))))
|
|
1973
|
|
1974
|
|
1975 ;;; Horizontal scrolling
|
|
1976 (defun ispell-horiz-scroll ()
|
|
1977 "Places point within the horizontal visibility of its window area."
|
|
1978 (if truncate-lines ; display truncating lines?
|
|
1979 ;; See if display needs to be scrolled.
|
|
1980 (let ((column (- (current-column) (max (window-hscroll) 1))))
|
|
1981 (if (and (< column 0) (> (window-hscroll) 0))
|
|
1982 (scroll-right (max (- column) 10))
|
|
1983 (if (>= column (- (window-width) 2))
|
|
1984 (scroll-left (max (- column (window-width) -3) 10)))))))
|
|
1985
|
|
1986
|
|
1987 ;;; Interactive word completion.
|
|
1988 ;;; Forces "previous-word" processing. Do we want to make this selectable?
|
|
1989
|
|
1990 ;;;###autoload
|
|
1991 (defun ispell-complete-word (&optional interior-frag)
|
|
1992 "Look up word before or under point in dictionary (see lookup-words command)
|
|
1993 and try to complete it. If optional INTERIOR-FRAG is non-nil then the word
|
|
1994 may be a character sequence inside of a word.
|
|
1995
|
|
1996 Standard ispell choices are then available."
|
|
1997 (interactive "P")
|
|
1998 (let ((cursor-location (point))
|
|
1999 case-fold-search
|
|
2000 (word (ispell-get-word nil "\\*")) ; force "previous-word" processing.
|
|
2001 start end possibilities replacement)
|
|
2002 (setq start (car (cdr word))
|
|
2003 end (car (cdr (cdr word)))
|
|
2004 word (car word)
|
|
2005 possibilities
|
|
2006 (or (string= word "") ; Will give you every word
|
|
2007 (lookup-words (concat (if interior-frag "*") word "*")
|
|
2008 ispell-complete-word-dict)))
|
|
2009 (cond ((eq possibilities t)
|
|
2010 (message "No word to complete"))
|
|
2011 ((null possibilities)
|
|
2012 (message "No match for \"%s\"" word))
|
|
2013 (t ; There is a modification...
|
|
2014 (cond ; Try and respect case of word.
|
|
2015 ((string-match "^[^A-Z]+$" word)
|
|
2016 (setq possibilities (mapcar 'downcase possibilities)))
|
|
2017 ((string-match "^[^a-z]+$" word)
|
|
2018 (setq possibilities (mapcar 'upcase possibilities)))
|
|
2019 ((string-match "^[A-Z]" word)
|
|
2020 (setq possibilities (mapcar 'capitalize possibilities))))
|
|
2021 (save-window-excursion
|
|
2022 (setq replacement
|
|
2023 (ispell-command-loop possibilities nil word start end)))
|
|
2024 (cond
|
|
2025 ((equal 0 replacement) ; BUFFER-LOCAL ADDITION
|
|
2026 (ispell-add-per-file-word-list word))
|
|
2027 (replacement ; REPLACEMENT WORD
|
|
2028 (delete-region start end)
|
|
2029 (setq word (if (atom replacement) replacement (car replacement))
|
|
2030 cursor-location (+ (- (length word) (- end start))
|
|
2031 cursor-location))
|
|
2032 (insert word)
|
|
2033 (if (not (atom replacement)) ; recheck spelling of replacement.
|
|
2034 (progn
|
|
2035 (goto-char cursor-location)
|
|
2036 (ispell-word nil t)))))
|
|
2037 (if (get-buffer ispell-choices-buffer)
|
|
2038 (kill-buffer ispell-choices-buffer))))
|
|
2039 (ispell-pdict-save ispell-silently-savep)
|
|
2040 (goto-char cursor-location)))
|
|
2041
|
|
2042
|
|
2043 ;;;###autoload
|
|
2044 (defun ispell-complete-word-interior-frag ()
|
|
2045 "Completes word matching character sequence inside a word."
|
|
2046 (interactive)
|
|
2047 (ispell-complete-word t))
|
|
2048
|
|
2049
|
|
2050 ;;; **********************************************************************
|
|
2051 ;;; Ispell Minor Mode
|
|
2052 ;;; **********************************************************************
|
|
2053
|
|
2054 (defvar ispell-minor-mode nil
|
|
2055 "Non-nil if Ispell minor mode is enabled.")
|
|
2056 ;; Variable indicating that ispell minor mode is active.
|
|
2057 (make-variable-buffer-local 'ispell-minor-mode)
|
|
2058
|
|
2059 (or (assq 'ispell-minor-mode minor-mode-alist)
|
|
2060 (setq minor-mode-alist
|
|
2061 (cons '(ispell-minor-mode " Spell") minor-mode-alist)))
|
|
2062
|
|
2063 (defvar ispell-minor-keymap
|
|
2064 (let ((map (make-sparse-keymap)))
|
|
2065 (define-key map " " 'ispell-minor-check)
|
|
2066 (define-key map "\r" 'ispell-minor-check)
|
|
2067 map)
|
|
2068 "Keymap used for Ispell minor mode.")
|
|
2069
|
|
2070 (or (not (boundp 'minor-mode-map-alist))
|
|
2071 (assoc 'ispell-minor-mode minor-mode-map-alist)
|
|
2072 (setq minor-mode-map-alist
|
|
2073 (cons (cons 'ispell-minor-mode ispell-minor-keymap)
|
|
2074 minor-mode-map-alist)))
|
|
2075
|
|
2076 ;;;###autoload
|
|
2077 (defun ispell-minor-mode (&optional arg)
|
|
2078 "Toggle Ispell minor mode.
|
|
2079 With prefix arg, turn Ispell minor mode on iff arg is positive.
|
|
2080
|
|
2081 In Ispell minor mode, pressing SPC or RET
|
|
2082 warns you if the previous word is incorrectly spelled."
|
|
2083 (interactive "P")
|
|
2084 (setq ispell-minor-mode
|
|
2085 (not (or (and (null arg) ispell-minor-mode)
|
|
2086 (<= (prefix-numeric-value arg) 0))))
|
|
2087 (redraw-modeline))
|
|
2088
|
|
2089 (defun ispell-minor-check ()
|
|
2090 ;; Check previous word then continue with the normal binding of this key.
|
|
2091 (interactive "*")
|
|
2092 (let ((ispell-minor-mode nil)
|
|
2093 (ispell-check-only t))
|
|
2094 (save-restriction
|
|
2095 (narrow-to-region (point-min) (point))
|
|
2096 (ispell-word nil t))
|
|
2097 (call-interactively (key-binding (this-command-keys)))))
|
|
2098
|
|
2099
|
|
2100 ;;; **********************************************************************
|
|
2101 ;;; Ispell Message
|
|
2102 ;;; **********************************************************************
|
|
2103 ;;; Original from D. Quinlan, E. Bradford, A. Albert, and M. Ernst
|
|
2104
|
|
2105
|
|
2106 (defvar ispell-message-text-end
|
|
2107 (mapconcat (function identity)
|
|
2108 '(
|
|
2109 ;; Matches postscript files.
|
|
2110 "^%!PS-Adobe-[123].0"
|
|
2111 ;; Matches uuencoded text
|
|
2112 "^begin [0-9][0-9][0-9] .*\nM.*\nM.*\nM"
|
|
2113 ;; Matches shell files (esp. auto-decoding)
|
|
2114 "^#! /bin/[ck]?sh"
|
|
2115 ;; Matches context difference listing
|
|
2116 "\\(diff -c .*\\)?\n\\*\\*\\* .*\n--- .*\n\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*"
|
2
|
2117 ;; Matches reporter.el bug report
|
|
2118 "^current state:\n==============\n"
|
0
|
2119 ;; Matches "----------------- cut here"
|
2
|
2120 ;; and "------- Start of forwarded message"
|
|
2121 "^[-=_]+\\s ?\\(cut here\\|Start of forwarded message\\)")
|
0
|
2122 "\\|")
|
|
2123 "*End of text which will be checked in ispell-message.
|
|
2124 If it is a string, limit at first occurrence of that regular expression.
|
|
2125 Otherwise, it must be a function which is called to get the limit.")
|
|
2126
|
|
2127
|
|
2128 (defvar ispell-message-start-skip
|
|
2129 (mapconcat (function identity)
|
|
2130 '(
|
|
2131 ;; Matches forwarded messages
|
|
2132 "^---* Forwarded Message"
|
|
2133 ;; Matches PGP Public Key block
|
|
2134 "^---*BEGIN PGP [A-Z ]*--*"
|
|
2135 )
|
|
2136 "\\|")
|
|
2137 "Spelling is skipped inside these start/end groups by ispell-message.
|
|
2138 Assumed that blocks are not mutually inclusive.")
|
|
2139
|
|
2140
|
|
2141 (defvar ispell-message-end-skip
|
|
2142 (mapconcat (function identity)
|
|
2143 '(
|
|
2144 ;; Matches forwarded messages
|
|
2145 "^--- End of Forwarded Message"
|
|
2146 ;; Matches PGP Public Key block
|
|
2147 "^---*END PGP [A-Z ]*--*"
|
|
2148 )
|
|
2149 "\\|")
|
|
2150 "Spelling is skipped inside these start/end groups by ispell-message.
|
|
2151 Assumed that blocks are not mutually inclusive.")
|
|
2152
|
|
2153
|
|
2154 ;;;###autoload
|
|
2155 (defun ispell-message ()
|
|
2156 "Check the spelling of a mail message or news post.
|
|
2157 Don't check spelling of message headers except the Subject field.
|
|
2158 Don't check included messages.
|
|
2159
|
2
|
2160 To abort spell checking of a message region and send the message anyway,
|
0
|
2161 use the `x' or `q' command. (Any subsequent regions will be checked.)
|
|
2162 The `X' command aborts the message send so that you can edit the buffer.
|
|
2163
|
|
2164 To spell-check whenever a message is sent, include the appropriate lines
|
|
2165 in your .emacs file:
|
2
|
2166 (add-hook 'message-send-hook 'ispell-message)
|
0
|
2167 (add-hook 'mail-send-hook 'ispell-message)
|
|
2168 (add-hook 'mh-before-send-letter-hook 'ispell-message)
|
|
2169
|
|
2170 You can bind this to the key C-c i in GNUS or mail by adding to
|
|
2171 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
|
|
2172 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))"
|
|
2173 (interactive)
|
|
2174 (save-excursion
|
|
2175 (goto-char (point-min))
|
|
2176 (let* ((internal-messagep (save-excursion
|
|
2177 (re-search-forward
|
|
2178 (concat "^"
|
|
2179 (regexp-quote mail-header-separator)
|
|
2180 "$")
|
|
2181 nil t)))
|
|
2182 (limit (copy-marker
|
|
2183 (cond
|
|
2184 ((not ispell-message-text-end) (point-max))
|
|
2185 ((char-or-string-p ispell-message-text-end)
|
|
2186 (if (re-search-forward ispell-message-text-end nil t)
|
|
2187 (match-beginning 0)
|
|
2188 (point-max)))
|
|
2189 (t (min (point-max) (funcall ispell-message-text-end))))))
|
|
2190 (cite-regexp ;Prefix of inserted text
|
|
2191 (cond
|
|
2192 ((featurep 'supercite) ; sc 3.0
|
|
2193 (concat "\\(" (sc-cite-regexp) "\\)" "\\|"
|
|
2194 (ispell-non-empty-string sc-reference-tag-string)))
|
|
2195 ((featurep 'sc) ; sc 2.3
|
|
2196 (concat "\\(" sc-cite-regexp "\\)" "\\|"
|
|
2197 (ispell-non-empty-string sc-reference-tag-string)))
|
2
|
2198 ((equal major-mode 'news-reply-mode) ;GNUS 4 & below
|
0
|
2199 (concat "In article <" "\\|"
|
|
2200 (if mail-yank-prefix
|
|
2201 (ispell-non-empty-string mail-yank-prefix)
|
|
2202 "^ \\|^\t")))
|
2
|
2203 ((equal major-mode 'message-mode) ;GNUS 5
|
|
2204 (concat ".*@.* writes:$" "\\|"
|
|
2205 (if mail-yank-prefix
|
|
2206 (ispell-non-empty-string mail-yank-prefix)
|
|
2207 "^ \\|^\t")))
|
0
|
2208 ((equal major-mode 'mh-letter-mode) ; mh mail message
|
|
2209 (ispell-non-empty-string mh-ins-buf-prefix))
|
|
2210 ((not internal-messagep) ; Assume n sent us this message.
|
|
2211 (concat "In [a-zA-Z.]+ you write:" "\\|"
|
|
2212 "In <[^,;&+=]+> [^,;&+=]+ writes:" "\\|"
|
|
2213 " *> *"))
|
|
2214 ((boundp 'vm-included-text-prefix) ; VM mail message
|
|
2215 (concat "[^,;&+=]+ writes:" "\\|"
|
|
2216 (ispell-non-empty-string vm-included-text-prefix)))
|
|
2217 (mail-yank-prefix ; vanilla mail message.
|
|
2218 (ispell-non-empty-string mail-yank-prefix))
|
|
2219 (t "^ \\|^\t")))
|
|
2220 (cite-regexp-start (concat "^[ \t]*$\\|" cite-regexp))
|
|
2221 (cite-regexp-end (concat "^\\(" cite-regexp "\\)"))
|
|
2222 (old-case-fold-search case-fold-search)
|
|
2223 (case-fold-search t)
|
|
2224 (ispell-checking-message t))
|
|
2225 (goto-char (point-min))
|
|
2226 ;; Skip header fields except Subject: without Re:'s
|
|
2227 ;;(search-forward mail-header-separator nil t)
|
|
2228 (while (if internal-messagep
|
|
2229 (< (point) internal-messagep)
|
|
2230 (and (looking-at "[a-zA-Z---]+:\\|\t\\| ")
|
|
2231 (not (eobp))))
|
|
2232 (if (looking-at "Subject: *") ; Spell check new subject fields
|
|
2233 (progn
|
|
2234 (goto-char (match-end 0))
|
|
2235 (if (and (not (looking-at ".*Re\\>"))
|
|
2236 (not (looking-at "\\[")))
|
|
2237 (let ((case-fold-search old-case-fold-search))
|
|
2238 (ispell-region (point)
|
|
2239 (progn
|
|
2240 (end-of-line)
|
|
2241 (while (looking-at "\n[ \t]")
|
|
2242 (end-of-line 2))
|
|
2243 (point)))))))
|
|
2244 (forward-line 1))
|
|
2245 (setq case-fold-search nil)
|
|
2246 ;; Skip mail header, particularly for non-english languages.
|
|
2247 (if (looking-at (concat (regexp-quote mail-header-separator) "$"))
|
|
2248 (forward-line 1))
|
|
2249 (while (< (point) limit)
|
|
2250 ;; Skip across text cited from other messages.
|
|
2251 (while (and (looking-at cite-regexp-start)
|
|
2252 (< (point) limit)
|
|
2253 (zerop (forward-line 1))))
|
|
2254
|
|
2255 (if (< (point) limit)
|
|
2256 (let* ((start (point))
|
|
2257 ;; Check the next batch of lines that *aren't* cited.
|
|
2258 (end-c (and (re-search-forward cite-regexp-end limit 'end)
|
|
2259 (match-beginning 0)))
|
|
2260 ;; Skip a block of included text.
|
|
2261 (end-fwd (and (goto-char start)
|
|
2262 (re-search-forward ispell-message-start-skip
|
|
2263 limit 'end)
|
|
2264 (progn (beginning-of-line)
|
|
2265 (point))))
|
|
2266 (end (or (and end-c end-fwd (min end-c end-fwd))
|
|
2267 end-c end-fwd
|
2
|
2268 ;; default to limit of text.
|
0
|
2269 (marker-position limit))))
|
|
2270 (goto-char start)
|
|
2271 (ispell-region start end)
|
|
2272 (if (and end-fwd (= end end-fwd))
|
|
2273 (progn
|
|
2274 (goto-char end)
|
|
2275 (re-search-forward ispell-message-end-skip limit 'end))
|
|
2276 (goto-char end)))))
|
|
2277 (set-marker limit nil))))
|
|
2278
|
|
2279
|
|
2280 (defun ispell-non-empty-string (string)
|
|
2281 (if (or (not string) (string-equal string ""))
|
|
2282 "\\'\\`" ; An unmatchable string if string is null.
|
|
2283 (regexp-quote string)))
|
|
2284
|
|
2285
|
|
2286 ;;; **********************************************************************
|
|
2287 ;;; Buffer Local Functions
|
|
2288 ;;; **********************************************************************
|
|
2289
|
|
2290
|
|
2291 (defun ispell-accept-buffer-local-defs ()
|
|
2292 "Load all buffer-local information, restarting ispell when necessary."
|
|
2293 (ispell-buffer-local-dict) ; May kill ispell-process.
|
|
2294 (ispell-buffer-local-words) ; Will initialize ispell-process.
|
|
2295 (ispell-buffer-local-parsing))
|
|
2296
|
|
2297
|
|
2298 (defun ispell-buffer-local-parsing ()
|
|
2299 "Place Ispell into parsing mode for this buffer.
|
|
2300 Overrides the default parsing mode.
|
|
2301 Includes latex/nroff modes and extended character mode."
|
|
2302 ;; (ispell-init-process) must already be called.
|
|
2303 (process-send-string ispell-process "!\n") ; Put process in terse mode.
|
|
2304 ;; We assume all major modes with "tex-mode" in them should use latex parsing
|
|
2305 (if (or (and (eq ispell-parser 'use-mode-name)
|
|
2306 (string-match "[Tt][Ee][Xx]-mode" (symbol-name major-mode)))
|
|
2307 (eq ispell-parser 'tex))
|
|
2308 (process-send-string ispell-process "+\n") ; set ispell mode to tex
|
|
2309 (process-send-string ispell-process "-\n")) ; set mode to normal (nroff)
|
|
2310 ;; Hard-wire test for SGML & HTML mode.
|
|
2311 (setq ispell-skip-sgml (memq major-mode '(sgml-mode html-mode)))
|
|
2312 ;; Set default extended character mode for given buffer, if any.
|
|
2313 (let ((extended-char-mode (ispell-get-extended-character-mode)))
|
|
2314 (if extended-char-mode
|
|
2315 (process-send-string ispell-process (concat extended-char-mode "\n"))))
|
|
2316 ;; Set buffer-local parsing mode and extended character mode, if specified.
|
|
2317 (save-excursion
|
|
2318 (goto-char (point-min))
|
|
2319 ;; Uses last valid definition
|
|
2320 (while (search-forward ispell-parsing-keyword nil t)
|
|
2321 (let ((end (save-excursion (end-of-line) (point)))
|
|
2322 (case-fold-search t)
|
|
2323 string)
|
|
2324 (while (re-search-forward " *\\([^ \"]+\\)" end t)
|
|
2325 ;; space separated definitions.
|
|
2326 (setq string (buffer-substring (match-beginning 1) (match-end 1)))
|
|
2327 (cond ((string-match "latex-mode" string)
|
|
2328 (process-send-string ispell-process "+\n~tex\n"))
|
|
2329 ((string-match "nroff-mode" string)
|
|
2330 (process-send-string ispell-process "-\n~nroff"))
|
|
2331 ((string-match "~" string) ; Set extended character mode.
|
|
2332 (process-send-string ispell-process (concat string "\n")))
|
|
2333 (t (message "Illegal Ispell Parsing argument!")
|
|
2334 (sit-for 2))))))))
|
|
2335
|
|
2336
|
|
2337 ;;; Can kill the current ispell process
|
|
2338
|
|
2339 (defun ispell-buffer-local-dict ()
|
|
2340 "Initializes local dictionary.
|
|
2341 When a dictionary is defined in the buffer (see variable
|
|
2342 `ispell-dictionary-keyword'), it will override the local setting
|
|
2343 from \\[ispell-change-dictionary].
|
|
2344 Both should not be used to define a buffer-local dictionary."
|
|
2345 (save-excursion
|
|
2346 (goto-char (point-min))
|
|
2347 (let (end)
|
|
2348 ;; Override the local variable definition.
|
|
2349 ;; Uses last valid definition.
|
|
2350 (while (search-forward ispell-dictionary-keyword nil t)
|
|
2351 (setq end (save-excursion (end-of-line) (point)))
|
|
2352 (if (re-search-forward " *\\([^ \"]+\\)" end t)
|
|
2353 (setq ispell-local-dictionary
|
|
2354 (buffer-substring (match-beginning 1) (match-end 1)))))
|
|
2355 (goto-char (point-min))
|
|
2356 (while (search-forward ispell-pdict-keyword nil t)
|
|
2357 (setq end (save-excursion (end-of-line) (point)))
|
|
2358 (if (re-search-forward " *\\([^ \"]+\\)" end t)
|
|
2359 (setq ispell-local-pdict
|
|
2360 (buffer-substring (match-beginning 1) (match-end 1)))))))
|
|
2361 ;; Reload if new personal dictionary defined.
|
|
2362 (if (and ispell-local-pdict
|
|
2363 (not (equal ispell-local-pdict ispell-personal-dictionary)))
|
|
2364 (progn
|
|
2365 (ispell-kill-ispell t)
|
|
2366 (setq ispell-personal-dictionary ispell-local-pdict)))
|
|
2367 ;; Reload if new dictionary defined.
|
|
2368 (if (and ispell-local-dictionary
|
|
2369 (not (equal ispell-local-dictionary ispell-dictionary)))
|
|
2370 (ispell-change-dictionary ispell-local-dictionary)))
|
|
2371
|
|
2372
|
|
2373 (defun ispell-buffer-local-words ()
|
|
2374 "Loads the buffer-local dictionary in the current buffer."
|
|
2375 (if (and ispell-buffer-local-name
|
|
2376 (not (equal ispell-buffer-local-name (buffer-name))))
|
|
2377 (progn
|
|
2378 (ispell-kill-ispell t)
|
|
2379 (setq ispell-buffer-local-name nil)))
|
|
2380 (ispell-init-process)
|
|
2381 (save-excursion
|
|
2382 (goto-char (point-min))
|
|
2383 (while (search-forward ispell-words-keyword nil t)
|
|
2384 (or ispell-buffer-local-name
|
|
2385 (setq ispell-buffer-local-name (buffer-name)))
|
|
2386 (let ((end (save-excursion (end-of-line) (point)))
|
|
2387 string)
|
|
2388 ;; buffer-local words separated by a space, and can contain
|
|
2389 ;; any character other than a space.
|
|
2390 (while (re-search-forward " *\\([^ ]+\\)" end t)
|
|
2391 (setq string (buffer-substring (match-beginning 1) (match-end 1)))
|
|
2392 (process-send-string ispell-process (concat "@" string "\n")))))))
|
|
2393
|
|
2394
|
|
2395 ;;; returns optionally adjusted region-end-point.
|
|
2396
|
|
2397 (defun ispell-add-per-file-word-list (word &optional reg-end)
|
|
2398 "Adds new word to the per-file word list."
|
|
2399 (or ispell-buffer-local-name
|
|
2400 (setq ispell-buffer-local-name (buffer-name)))
|
|
2401 (if (null reg-end)
|
|
2402 (setq reg-end 0))
|
|
2403 (save-excursion
|
|
2404 (goto-char (point-min))
|
|
2405 (let (case-fold-search line-okay search done string)
|
|
2406 (while (not done)
|
|
2407 (setq search (search-forward ispell-words-keyword nil 'move)
|
|
2408 line-okay (< (+ (length word) 1 ; 1 for space after word..
|
|
2409 (progn (end-of-line) (current-column)))
|
|
2410 80))
|
|
2411 (if (or (and search line-okay)
|
|
2412 (null search))
|
|
2413 (progn
|
|
2414 (setq done t)
|
|
2415 (if (null search)
|
|
2416 (progn
|
|
2417 (open-line 1)
|
|
2418 (setq string (concat comment-start " "
|
|
2419 ispell-words-keyword))
|
|
2420 ;; in case the keyword is in the middle of the file....
|
|
2421 (if (> reg-end (point))
|
|
2422 (setq reg-end (+ reg-end (length string))))
|
|
2423 (insert string)
|
|
2424 (if (and comment-end (not (equal "" comment-end)))
|
|
2425 (save-excursion
|
|
2426 (open-line 1)
|
|
2427 (forward-line 1)
|
|
2428 (insert comment-end)))))
|
|
2429 (if (> reg-end (point))
|
|
2430 (setq reg-end (+ 1 reg-end (length word))))
|
|
2431 (insert (concat " " word)))))))
|
|
2432 reg-end)
|
|
2433
|
|
2434
|
|
2435 (defconst ispell-version "2.37 -- Tue Jun 13 12:05:28 EDT 1995")
|
|
2436
|
|
2437 (provide 'ispell)
|
|
2438
|
|
2439
|
|
2440 ;;; LOCAL VARIABLES AND BUFFER-LOCAL VALUE EXAMPLES.
|
|
2441
|
|
2442 ;;; Local Variable options:
|
|
2443 ;;; mode: name(-mode)
|
|
2444 ;;; eval: expression
|
|
2445 ;;; local-variable: value
|
|
2446
|
|
2447 ;;; The following sets the buffer local dictionary to english!
|
|
2448
|
|
2449 ;;; Local Variables:
|
|
2450 ;;; mode: emacs-lisp
|
|
2451 ;;; comment-column: 40
|
|
2452 ;;; ispell-local-dictionary: "english"
|
|
2453 ;;; End:
|
|
2454
|
|
2455
|
|
2456 ;;; MORE EXAMPLES OF ISPELL BUFFER-LOCAL VALUES
|
|
2457
|
|
2458 ;;; The following places this file in nroff parsing and extended char modes.
|
|
2459 ;;; Local IspellParsing: nroff-mode ~nroff
|
|
2460 ;;; Change IspellDict to IspellDict: to enable the following line.
|
|
2461 ;;; Local IspellDict english
|
|
2462 ;;; Change IspellPersDict to IspellPersDict: to enable the following line.
|
|
2463 ;;; Local IspellPersDict ~/.ispell_lisp
|
|
2464 ;;; The following were automatically generated by ispell using the 'A' command:
|
|
2465 ; LocalWords: ispell ispell-highlight-p ispell-check-comments query-replace
|
|
2466 ; LocalWords: ispell-query-replace-choices ispell-skip-tib non-nil tib
|
|
2467 ; LocalWords: regexps ispell-tib-ref-beginning ispell-tib-ref-end
|
|
2468
|
|
2469 ;; ispell.el ends here
|