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