Mercurial > emacs
annotate lisp/textmodes/spell.el @ 19860:c17fd465ea95 libc-970911 libc-970912 libc-970913 libc-970914 libc-970915 libc-970916 libc-970917 libc-970918 libc-970919 libc-970920 libc-970921 libc-970922 libc-970923 libc-970924 libc-970925 libc-970926 libc-970927 libc-970928 libc-970929 libc-970930 libc-971001 libc-971018 libc-971019 libc-971020 libc-971021 libc-971022 libc-971023 libc-971024 libc-971025 libc-971026 libc-971027 libc-971028 libc-971029 libc-971030 libc-971031 libc-971101 libc-971102 libc-971103 libc-971104 libc-971105 libc-971106 libc-971107 libc-971108 libc-971109 libc-971110 libc-971111 libc-971112 libc-971113 libc-971114 libc-971115 libc-971116 libc-971117 libc-971118 libc-971120 libc-971121 libc-971122 libc-971123 libc-971124 libc-971125 libc-971126 libc-971127 libc-971128 libc-971129 libc-971130 libc-971201 libc-971203 libc-971204 libc-971205 libc-971206 libc-971207 libc-971208 libc-971209 libc-971210 libc-971211 libc-971212 libc-971213 libc-971214 libc-971217 libc-971218 libc-971219 libc-971220 libc-971221 libc-971222 libc-971223 libc-971224 libc-971225 libc-971226 libc-971227 libc-971228 libc-971229 libc-971230 libc-971231 libc-980103 libc-980104 libc-980105 libc-980106 libc-980107 libc-980108 libc-980109 libc-980110 libc-980111 libc-980112 libc-980114 libc-980115 libc-980116 libc-980117 libc-980118 libc-980119 libc-980120 libc-980121 libc-980122 libc-980123 libc-980124 libc-980125 libc-980126 libc-980127 libc-980128
typos.
author | Jeff Law <law@redhat.com> |
---|---|
date | Wed, 10 Sep 1997 21:16:20 +0000 |
parents | 11218164bc54 |
children | 9b831f34ff7d |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1 ;;; spell.el --- spelling correction interface for Emacs. |
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 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
29 ;; `spell-string'. These facilities are documented in the Emacs user's |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
30 ;; manual. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
31 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
32 ;;; Code: |
36 | 33 |
34 (defvar spell-command "spell" | |
35 "*Command to run the spell program.") | |
36 | |
37 (defvar spell-filter nil | |
38 "*Filter function to process text before passing it to spell program. | |
39 This function might remove text-processor commands. | |
40 nil means don't alter the text before checking it.") | |
41 | |
258 | 42 ;;;###autoload |
10323
759195dcd02b
(spell-filter): Make it a risky-local-variable.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
43 (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
|
44 |
759195dcd02b
(spell-filter): Make it a risky-local-variable.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
45 ;;;###autoload |
36 | 46 (defun spell-buffer () |
47 "Check spelling of every word in the buffer. | |
48 For each incorrect word, you are asked for the correct spelling | |
49 and then put into a query-replace to fix some or all occurrences. | |
50 If you do not want to change a word, just give the same word | |
51 as its \"correct\" spelling; then the query replace is skipped." | |
52 (interactive) | |
53 (spell-region (point-min) (point-max) "buffer")) | |
54 | |
258 | 55 ;;;###autoload |
36 | 56 (defun spell-word () |
57 "Check spelling of word at or before point. | |
58 If it is not correct, ask user for the correct spelling | |
1541 | 59 and `query-replace' the entire buffer to substitute it." |
36 | 60 (interactive) |
61 (let (beg end spell-filter) | |
62 (save-excursion | |
63 (if (not (looking-at "\\<")) | |
64 (forward-word -1)) | |
65 (setq beg (point)) | |
66 (forward-word 1) | |
67 (setq end (point))) | |
68 (spell-region beg end (buffer-substring beg end)))) | |
69 | |
258 | 70 ;;;###autoload |
36 | 71 (defun spell-region (start end &optional description) |
1541 | 72 "Like `spell-buffer' but applies only to region. |
36 | 73 Used in a program, applies from START to END. |
74 DESCRIPTION is an optional string naming the unit being checked: | |
75 for example, \"word\"." | |
76 (interactive "r") | |
77 (let ((filter spell-filter) | |
78 (buf (get-buffer-create " *temp*"))) | |
79 (save-excursion | |
80 (set-buffer buf) | |
81 (widen) | |
82 (erase-buffer)) | |
83 (message "Checking spelling of %s..." (or description "region")) | |
84 (if (and (null filter) (= ?\n (char-after (1- end)))) | |
85 (if (string= "spell" spell-command) | |
86 (call-process-region start end "spell" nil buf) | |
87 (call-process-region start end shell-file-name | |
88 nil buf nil "-c" spell-command)) | |
89 (let ((oldbuf (current-buffer))) | |
90 (save-excursion | |
91 (set-buffer buf) | |
92 (insert-buffer-substring oldbuf start end) | |
93 (or (bolp) (insert ?\n)) | |
94 (if filter (funcall filter)) | |
95 (if (string= "spell" spell-command) | |
96 (call-process-region (point-min) (point-max) "spell" t buf) | |
97 (call-process-region (point-min) (point-max) shell-file-name | |
98 t buf nil "-c" spell-command))))) | |
99 (message "Checking spelling of %s...%s" | |
100 (or description "region") | |
101 (if (save-excursion | |
102 (set-buffer buf) | |
103 (> (buffer-size) 0)) | |
104 "not correct" | |
105 "correct")) | |
106 (let (word newword | |
107 (case-fold-search t) | |
108 (case-replace t)) | |
109 (while (save-excursion | |
110 (set-buffer buf) | |
111 (> (buffer-size) 0)) | |
112 (save-excursion | |
113 (set-buffer buf) | |
114 (goto-char (point-min)) | |
115 (setq word (downcase | |
116 (buffer-substring (point) | |
117 (progn (end-of-line) (point))))) | |
118 (forward-char 1) | |
119 (delete-region (point-min) (point)) | |
120 (setq newword | |
121 (read-input (concat "`" word | |
122 "' not recognized; edit a replacement: ") | |
123 word)) | |
124 (flush-lines (concat "^" (regexp-quote word) "$"))) | |
125 (if (not (equal word newword)) | |
126 (progn | |
127 (goto-char (point-min)) | |
128 (query-replace-regexp (concat "\\b" (regexp-quote word) "\\b") | |
129 newword))))))) | |
130 | |
131 | |
258 | 132 ;;;###autoload |
36 | 133 (defun spell-string (string) |
134 "Check spelling of string supplied as argument." | |
135 (interactive "sSpell string: ") | |
136 (let ((buf (get-buffer-create " *temp*"))) | |
137 (save-excursion | |
138 (set-buffer buf) | |
139 (widen) | |
140 (erase-buffer) | |
141 (insert string "\n") | |
142 (if (string= "spell" spell-command) | |
143 (call-process-region (point-min) (point-max) "spell" | |
144 t t) | |
145 (call-process-region (point-min) (point-max) shell-file-name | |
146 t t nil "-c" spell-command)) | |
147 (if (= 0 (buffer-size)) | |
148 (message "%s is correct" string) | |
149 (goto-char (point-min)) | |
150 (while (search-forward "\n" nil t) | |
151 (replace-match " ")) | |
152 (message "%sincorrect" (buffer-substring 1 (point-max))))))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
153 |
18383 | 154 (provide 'spell) |
155 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
156 ;;; spell.el ends here |