annotate lisp/packages/spell.el @ 155:43dd3413c7c7 r20-3b4

Import from CVS: tag r20-3b4
author cvs
date Mon, 13 Aug 2007 09:39:39 +0200
parents ac2d302a0011
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; spell.el --- spelling correction interface for Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1985 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
5 ;; Maintainer: FSF
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
6 ;; Keywords: wp, unix
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
7
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
23 ;; 02111-1307, USA.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
24
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
25 ;;; Synched up with: FSF 19.34.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
26
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
27 ;;; Commentary:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
29 ;; This mode provides an Emacs interface to the UNIX spell(1) program.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
30 ;; Entry points are `spell-buffer', `spell-word', `spell-region' and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
31 ;; `spell-string'. These facilities are documented in the Emacs user's
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
32 ;; manual.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
33
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
34 ;;; Code:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (defvar spell-command "spell"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 "*Command to run the spell program.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (defvar spell-filter nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 "*Filter function to process text before passing it to spell program.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 This function might remove text-processor commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 nil means don't alter the text before checking it.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
44 ;;;###autoload
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
45 (put 'spell-filter 'risky-local-variable t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
46
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
47 ;;;###autoload
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (defun spell-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 "Check spelling of every word in the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 For each incorrect word, you are asked for the correct spelling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 and then put into a query-replace to fix some or all occurrences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 If you do not want to change a word, just give the same word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 as its \"correct\" spelling; then the query replace is skipped."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (spell-region (point-min) (point-max) "buffer"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
57 ;;;###autoload
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (defun spell-word ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 "Check spelling of word at or before point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 If it is not correct, ask user for the correct spelling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 and `query-replace' the entire buffer to substitute it."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (let (beg end spell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (if (not (looking-at "\\<"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (forward-word -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (setq beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (forward-word 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (setq end (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (spell-region beg end (buffer-substring beg end))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
72 ;;;###autoload
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defun spell-region (start end &optional description)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 "Like `spell-buffer' but applies only to region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Used in a program, applies from START to END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 DESCRIPTION is an optional string naming the unit being checked:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 for example, \"word\"."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (interactive "r")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (let ((filter spell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (buf (get-buffer-create " *temp*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (erase-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (message "Checking spelling of %s..." (or description "region"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (if (and (null filter) (= ?\n (char-after (1- end))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (if (string= "spell" spell-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (call-process-region start end "spell" nil buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (call-process-region start end shell-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 nil buf nil "-c" spell-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (let ((oldbuf (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (insert-buffer-substring oldbuf start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (or (bolp) (insert ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (if filter (funcall filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (if (string= "spell" spell-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (call-process-region (point-min) (point-max) "spell" t buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (call-process-region (point-min) (point-max) shell-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 t buf nil "-c" spell-command)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (message "Checking spelling of %s...%s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (or description "region")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (if (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (> (buffer-size) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 "not correct"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 "correct"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (let (word newword
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (case-replace t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (while (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (> (buffer-size) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (setq word (downcase
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (buffer-substring (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (progn (end-of-line) (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (forward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (delete-region (point-min) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (setq newword
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (read-input (concat "`" word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 "' not recognized; edit a replacement: ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (flush-lines (concat "^" (regexp-quote word) "$")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (if (not (equal word newword))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (query-replace-regexp (concat "\\b" (regexp-quote word) "\\b")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 newword)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
134 ;;;###autoload
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (defun spell-string (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 "Check spelling of string supplied as argument."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (interactive "sSpell string: ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (let ((buf (get-buffer-create " *temp*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (set-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (insert string "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (if (string= "spell" spell-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (call-process-region (point-min) (point-max) "spell"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 t t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (call-process-region (point-min) (point-max) shell-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 t t nil "-c" spell-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (if (= 0 (buffer-size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (message "%s is correct" string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (while (search-forward "\n" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (replace-match " "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (message "%sincorrect" (buffer-substring 1 (point-max)))))))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
155
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
156 ;;; spell.el ends here