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