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