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