annotate lisp/packages/spell.el @ 0:376386a54a3c r19-14

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