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