1 ;;; spell.el --- spelling correction interface for Emacs
3 ;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007 Free Software Foundation, Inc.
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; This mode provides an Emacs interface to the UNIX spell(1) program.
29 ;; Entry points are `spell-buffer', `spell-word', `spell-region' and
32 ;; See also ispell.el for an interface to the ispell program.
37 "Interface to the UNIX spell(1) program."
41 (defcustom spell-command
"spell"
42 "*Command to run the spell program."
46 (defcustom spell-filter nil
47 "*Filter function to process text before passing it to spell program.
48 This function might remove text-processor commands.
49 nil means don't alter the text before checking it."
50 :type
'(choice (const nil
) function
)
54 (put 'spell-filter
'risky-local-variable t
)
57 (defun spell-buffer ()
58 "Check spelling of every word in the buffer.
59 For each incorrect word, you are asked for the correct spelling
60 and then put into a query-replace to fix some or all occurrences.
61 If you do not want to change a word, just give the same word
62 as its \"correct\" spelling; then the query replace is skipped."
64 (spell-region (point-min) (point-max) "buffer"))
68 "Check spelling of word at or before point.
69 If it is not correct, ask user for the correct spelling
70 and `query-replace' the entire buffer to substitute it."
72 (let (beg end spell-filter
)
74 (if (not (looking-at "\\<"))
79 (spell-region beg end
(buffer-substring beg end
))))
82 (defun spell-region (start end
&optional description
)
83 "Like `spell-buffer' but applies only to region.
84 Used in a program, applies from START to END.
85 DESCRIPTION is an optional string naming the unit being checked:
86 for example, \"word\"."
88 (let ((filter spell-filter
)
89 (buf (get-buffer-create " *temp*")))
94 (message "Checking spelling of %s..." (or description
"region"))
95 (if (and (null filter
) (= ?
\n (char-after (1- end
))))
96 (if (string= "spell" spell-command
)
97 (call-process-region start end
"spell" nil buf
)
98 (call-process-region start end shell-file-name
99 nil buf nil
"-c" spell-command
))
100 (let ((oldbuf (current-buffer)))
103 (insert-buffer-substring oldbuf start end
)
104 (or (bolp) (insert ?
\n))
105 (if filter
(funcall filter
))
106 (if (string= "spell" spell-command
)
107 (call-process-region (point-min) (point-max) "spell" t buf
)
108 (call-process-region (point-min) (point-max) shell-file-name
109 t buf nil
"-c" spell-command
)))))
110 (message "Checking spelling of %s...%s"
111 (or description
"region")
120 (while (save-excursion
125 (goto-char (point-min))
127 (buffer-substring (point)
128 (progn (end-of-line) (point)))))
130 (delete-region (point-min) (point))
132 (read-string (concat "`" word
133 "' not recognized; edit a replacement: ")
135 (flush-lines (concat "^" (regexp-quote word
) "$")))
136 (if (not (equal word newword
))
138 (goto-char (point-min))
139 (query-replace-regexp (concat "\\b" (regexp-quote word
) "\\b")
144 (defun spell-string (string)
145 "Check spelling of string supplied as argument."
146 (interactive "sSpell string: ")
147 (let ((buf (get-buffer-create " *temp*")))
153 (if (string= "spell" spell-command
)
154 (call-process-region (point-min) (point-max) "spell"
156 (call-process-region (point-min) (point-max) shell-file-name
157 t t nil
"-c" spell-command
))
158 (if (= 0 (buffer-size))
159 (message "%s is correct" string
)
160 (goto-char (point-min))
161 (while (search-forward "\n" nil t
)
163 (message "%sincorrect" (buffer-substring 1 (point-max)))))))
167 ;;; arch-tag: 7eabb848-9c76-431a-bcdb-0e0592d2db04
168 ;;; spell.el ends here