Mercurial > emacs
annotate lisp/textmodes/spell.el @ 51151:fe11e703042b
Summary: MIME support added for e-mail processing that
skips encoded regions. Allow user to skip saving Fcc messages with
large attachments. Fixed region skipping bug with multi-line
comments - e.g. tex $ regions spanning multiple lines.
Added support for postscript and uuencoded regions.
Redundant dictionary file names purged.
Dictionary definition field name changed from "Character Set"
to "Coding System". Fixed bug in reloading dictionaries.
Modified headers to reflect new version. XEmacs menu now adds
customize item.
(ispell-check-version): No longer an aliased function.
Returns library path if not called interactively.
Variable `temporary-file-directory' protected if not loaded.
(check-ispell-version): Now the alias for `ispell-check-version'.
(ispell-message-fcc-skip): New variable that determines if and when
to query about saving Fcc copy of message if an attachment is large.
(ispell-skip-html): Declared buffer-local.
(ispell-local-dictionary-alist): Docstring expanded.
Tag name changed from "Character Set" to "Coding System".
(ispell-dictionary-alist-1): Removed redundant command-line option to
load brasileiro, british, and castellano dictionary files.
(ispell-dictionary-alist-2): Removed redundant command-line option to
load czech dictionary file.
(ispell-dictionary-alist-3): Moved francais-tex here.
(ispell-dictionary-alist-4): Removed german and german8 dictionaries.
The deutsch ones are the correct definitions. `nederlands'
and `nederlands8' dictionaries moved here.
(ispell-dictionary-alist-5): `polish' and `portugues' dictionaries
moved here. Removed redundant command-line option to `norsk'
and `portugues'.
(ispell-dictionary-alist-6): Removed redundant command-line option to
load `russian' and `slovak' dictionary files.
(ispell-dictionary-alist): Tag name changed from "Character Set" to
"Coding System".
(ispell-version): Updated to 3.6.
(ispell-library-directory): Calls non-deprecated function.
(ispell-valid-dictionary-list): New function returning all valid
dictionaries on machine.
(ispell-checking-message): Documentation string improved.
(ispell-skip-region-alist): Added uuencoded and postscript region
skipping. Improved http/e-mail/file regexp to not match `/.\w'.
(ispell-html-skip-alists): New variable for html region support.
(ispell-send-string): Removed redundant xemacs check.
(ispell-word): Fix spelling error in documentation string, added
extent information to support highlighting in ispell-minor-mode.
(ispell-command-loop): Disable horizontal scrollbar in XEmacs
choices buffer.
(ispell-show-choices): Directly select `choices-window'.
(ispell-help): Use default buffer size for electric help.
(ispell-adjusted-window-height): Correct for xemacs detection.
(ispell-start-process): Don't double specify dictionary file name.
(ispell-init-process): Set `ispell-library-path' each call.
(ispell-change-dictionary): Now only completes valid dictionaries.
(ispell-region): Add support for MIME region skipping and Fcc
message query for large attachments.
(ispell-begin-skip-region-regexp): Add documentation string.
Added message support and cleaned up code for generic and html regions.
(ispell-begin-skip-region): Function is now requires alist argument.
(ispell-begin-tex-skip-regexp): Added comments and support
improved html and message regions.
(ispell-skip-region-list): New function for MIME and region skipping.
(ispell-tex-arg-end): Add documentation string.
(ispell-ignore-fcc): New function to query saving Fcc message.
(ispell-skip-region): Calculate alist for key match dynamically,
html skipping pushed to alists.
(ispell-get-line): Add support for multi-line comment regions.
(ispell): Check that variables to continue spelling are bound.
(ispell-message-text-end): Postscript and uuencoded regions now
supported as MIME regions, rather than as end-of-message region.
(ispell-mime-multipartp): New function supporting MIME.
(ispell-mime-skip-part): New function supporting MIME.
(ispell-message): Add MIME support.
(ispell-buffer-local-parsing): Variable `ispell-skip-html' now local.
(ispell-buffer-local-dict): Fixed bug for detecting and reloading
new dictionary.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 22 May 2003 21:34:00 +0000 |
parents | 253f761ad37b |
children | 695cf19ef79e d7ddb3e565de |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
35965
diff
changeset
|
1 ;;; spell.el --- spelling correction interface for Emacs |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2 |
841 | 3 ;; Copyright (C) 1985 Free Software Foundation, Inc. |
4 | |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
5 ;; Maintainer: FSF |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
6 ;; Keywords: wp, unix |
36 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
787
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
36 | 24 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
25 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
26 |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
27 ;; This mode provides an Emacs interface to the UNIX spell(1) program. |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
28 ;; Entry points are `spell-buffer', `spell-word', `spell-region' and |
20963
0d56074cec59
Doc fix in Commentary section.
Stephen Eglen <stephen@gnu.org>
parents:
20959
diff
changeset
|
29 ;; `spell-string'. |
0d56074cec59
Doc fix in Commentary section.
Stephen Eglen <stephen@gnu.org>
parents:
20959
diff
changeset
|
30 |
0d56074cec59
Doc fix in Commentary section.
Stephen Eglen <stephen@gnu.org>
parents:
20959
diff
changeset
|
31 ;; See also ispell.el for an interface to the ispell program. |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
32 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
33 ;;; Code: |
36 | 34 |
20959 | 35 (defgroup spell nil |
36 "Interface to the UNIX spell(1) program." | |
37 :prefix "spell-" | |
38 :group 'applications) | |
36 | 39 |
20959 | 40 (defcustom spell-command "spell" |
41 "*Command to run the spell program." | |
42 :type 'string | |
43 :group 'spell) | |
44 | |
45 (defcustom spell-filter nil | |
36 | 46 "*Filter function to process text before passing it to spell program. |
47 This function might remove text-processor commands. | |
20959 | 48 nil means don't alter the text before checking it." |
35965 | 49 :type '(choice (const nil) function) |
20959 | 50 :group 'spell) |
36 | 51 |
258 | 52 ;;;###autoload |
10323
759195dcd02b
(spell-filter): Make it a risky-local-variable.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
53 (put 'spell-filter 'risky-local-variable t) |
759195dcd02b
(spell-filter): Make it a risky-local-variable.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
54 |
759195dcd02b
(spell-filter): Make it a risky-local-variable.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
55 ;;;###autoload |
36 | 56 (defun spell-buffer () |
57 "Check spelling of every word in the buffer. | |
58 For each incorrect word, you are asked for the correct spelling | |
59 and then put into a query-replace to fix some or all occurrences. | |
60 If you do not want to change a word, just give the same word | |
61 as its \"correct\" spelling; then the query replace is skipped." | |
62 (interactive) | |
63 (spell-region (point-min) (point-max) "buffer")) | |
64 | |
258 | 65 ;;;###autoload |
36 | 66 (defun spell-word () |
67 "Check spelling of word at or before point. | |
68 If it is not correct, ask user for the correct spelling | |
1541 | 69 and `query-replace' the entire buffer to substitute it." |
36 | 70 (interactive) |
71 (let (beg end spell-filter) | |
72 (save-excursion | |
73 (if (not (looking-at "\\<")) | |
74 (forward-word -1)) | |
75 (setq beg (point)) | |
76 (forward-word 1) | |
77 (setq end (point))) | |
78 (spell-region beg end (buffer-substring beg end)))) | |
79 | |
258 | 80 ;;;###autoload |
36 | 81 (defun spell-region (start end &optional description) |
1541 | 82 "Like `spell-buffer' but applies only to region. |
36 | 83 Used in a program, applies from START to END. |
84 DESCRIPTION is an optional string naming the unit being checked: | |
85 for example, \"word\"." | |
86 (interactive "r") | |
87 (let ((filter spell-filter) | |
88 (buf (get-buffer-create " *temp*"))) | |
89 (save-excursion | |
90 (set-buffer buf) | |
91 (widen) | |
92 (erase-buffer)) | |
93 (message "Checking spelling of %s..." (or description "region")) | |
94 (if (and (null filter) (= ?\n (char-after (1- end)))) | |
95 (if (string= "spell" spell-command) | |
96 (call-process-region start end "spell" nil buf) | |
97 (call-process-region start end shell-file-name | |
98 nil buf nil "-c" spell-command)) | |
99 (let ((oldbuf (current-buffer))) | |
100 (save-excursion | |
101 (set-buffer buf) | |
102 (insert-buffer-substring oldbuf start end) | |
103 (or (bolp) (insert ?\n)) | |
104 (if filter (funcall filter)) | |
105 (if (string= "spell" spell-command) | |
106 (call-process-region (point-min) (point-max) "spell" t buf) | |
107 (call-process-region (point-min) (point-max) shell-file-name | |
108 t buf nil "-c" spell-command))))) | |
109 (message "Checking spelling of %s...%s" | |
110 (or description "region") | |
111 (if (save-excursion | |
112 (set-buffer buf) | |
113 (> (buffer-size) 0)) | |
114 "not correct" | |
115 "correct")) | |
116 (let (word newword | |
117 (case-fold-search t) | |
118 (case-replace t)) | |
119 (while (save-excursion | |
120 (set-buffer buf) | |
121 (> (buffer-size) 0)) | |
122 (save-excursion | |
123 (set-buffer buf) | |
124 (goto-char (point-min)) | |
125 (setq word (downcase | |
126 (buffer-substring (point) | |
127 (progn (end-of-line) (point))))) | |
128 (forward-char 1) | |
129 (delete-region (point-min) (point)) | |
130 (setq newword | |
131 (read-input (concat "`" word | |
132 "' not recognized; edit a replacement: ") | |
133 word)) | |
134 (flush-lines (concat "^" (regexp-quote word) "$"))) | |
135 (if (not (equal word newword)) | |
136 (progn | |
137 (goto-char (point-min)) | |
138 (query-replace-regexp (concat "\\b" (regexp-quote word) "\\b") | |
139 newword))))))) | |
140 | |
141 | |
258 | 142 ;;;###autoload |
36 | 143 (defun spell-string (string) |
144 "Check spelling of string supplied as argument." | |
145 (interactive "sSpell string: ") | |
146 (let ((buf (get-buffer-create " *temp*"))) | |
147 (save-excursion | |
148 (set-buffer buf) | |
149 (widen) | |
150 (erase-buffer) | |
151 (insert string "\n") | |
152 (if (string= "spell" spell-command) | |
153 (call-process-region (point-min) (point-max) "spell" | |
154 t t) | |
155 (call-process-region (point-min) (point-max) shell-file-name | |
156 t t nil "-c" spell-command)) | |
157 (if (= 0 (buffer-size)) | |
158 (message "%s is correct" string) | |
159 (goto-char (point-min)) | |
160 (while (search-forward "\n" nil t) | |
161 (replace-match " ")) | |
162 (message "%sincorrect" (buffer-substring 1 (point-max))))))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
163 |
18383 | 164 (provide 'spell) |
165 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
166 ;;; spell.el ends here |